diff --git a/.env b/.env
index fb6b03d..f923cf1 100644
--- a/.env
+++ b/.env
@@ -1,3 +1,4 @@
REACT_APP_LOCAL=
REACT_APP_PEARL_API_URL=
-REACT_APP_GOOGLE_API_KEY=
\ No newline at end of file
+REACT_APP_GOOGLE_API_KEY=
+REACT_APP_STROMAE_API_URL=
\ No newline at end of file
diff --git a/.kubernetes/deployment.yml b/.kubernetes/deployment.yml
index 70a1285..b38f773 100644
--- a/.kubernetes/deployment.yml
+++ b/.kubernetes/deployment.yml
@@ -15,7 +15,6 @@ spec:
containers:
- name: mapex
image: ddecrulle/mapex:latest
-
env:
- name: PEARL_API_URL
value: 'url'
diff --git a/.kubernetes/ingress.yml b/.kubernetes/ingress.yml
index a6e3b86..ad4d9b4 100644
--- a/.kubernetes/ingress.yml
+++ b/.kubernetes/ingress.yml
@@ -13,6 +13,9 @@ spec:
http:
paths:
- path: /
+ pathType: Prefix
backend:
- serviceName: mapex
- servicePort: http
+ service:
+ name: mapex
+ port:
+ number: 80
diff --git a/README.md b/README.md
index 3080fab..9d9c0f6 100644
--- a/README.md
+++ b/README.md
@@ -75,3 +75,8 @@ To run the storybook locally
```bash
yarn storybook
```
+
+### Things to follow for future integration
+
+[Error Boundary](https://reactjs.org/docs/error-boundaries.html)
+[Suspense for Data Fetching](https://reactjs.org/docs/concurrent-mode-suspense.html)
diff --git a/package.json b/package.json
index 3019bbf..29413d1 100644
--- a/package.json
+++ b/package.json
@@ -3,6 +3,7 @@
"version": "0.1.0",
"license": "MIT",
"dependencies": {
+ "@inseefr/lunatic": "^0.2.1-experimental",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
@@ -20,6 +21,7 @@
"react-leaflet": "^3.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
+ "recoil": "^0.4.1",
"storybook-addon-material-ui": "^0.9.0-alpha.24",
"web-vitals": "^0.2.4",
"workbox-background-sync": "^5.1.3",
diff --git a/public/favicon_package/site.webmanifest b/public/favicon_package/site.webmanifest
index 3d20767..bed44bb 100644
--- a/public/favicon_package/site.webmanifest
+++ b/public/favicon_package/site.webmanifest
@@ -13,7 +13,7 @@
"type": "image/png"
}
],
- "start_url": ".",
+ "start_url": "./",
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
diff --git a/src/api/index.js b/src/api/index.js
index 2599b0f..79f321b 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -4,4 +4,4 @@ import * as remote from './remote';
const API = getEnvVar('LOCAL') ? local : remote;
-export default API;
\ No newline at end of file
+export default API;
diff --git a/src/api/local/index.js b/src/api/local/index.js
index 2f875c7..b2d76cd 100644
--- a/src/api/local/index.js
+++ b/src/api/local/index.js
@@ -1,3 +1,4 @@
-export const getDataFromAPI = () => Promise.resolve([]);
+export const getDataFromAPI = ({ setError, setData = () => {}, setLoading }) =>
+ Promise.resolve([setLoading(false)]);
-export const getLatLng = (address, setError) => Promise.resolve([]);
+export const postData = () => Promise.resolve(true);
diff --git a/src/api/remote/call.js b/src/api/remote/call.js
index 1a14ad0..18cba20 100644
--- a/src/api/remote/call.js
+++ b/src/api/remote/call.js
@@ -1,18 +1,34 @@
-import { SURVEY_UNITS, UNITS } from './paths';
+import { SURVEY_UNITS, UNITS, PARADATA } from './paths';
-const get = (url) =>
- fetch(url)
+const fetcher = (url, method, body) => {
+ const headers = {
+ Accept: 'application/json, text/plain, */*',
+ 'Content-Type': 'application/json',
+ };
+ return fetch(url, {
+ headers: headers,
+ method,
+ body: body ? JSON.stringify(body) : null,
+ })
.then((r) => {
+ console.log(r);
if (r.ok) return r.json();
throw new Error('API failed');
})
- .catch(() => {
+ .catch((e) => {
+ console.log(e);
throw new Error(`Fetch error for ${url}`);
});
+};
-export const getSurveyUnitsAPI = () => get(SURVEY_UNITS);
+const postRequest = (url) => (body) => fetcher(url, 'POST', body);
+const getRequest = (url) => fetcher(url, 'GET', null);
+
+export const getSurveyUnitsAPI = () => getRequest(SURVEY_UNITS);
export const getSurveyUnitsExtended = () =>
- get(`${SURVEY_UNITS}?extended=true`);
+ getRequest(`${SURVEY_UNITS}?extended=true`);
+
+export const getUnit = (id) => getRequest(`${UNITS}/${id}`);
-export const getUnit = (id) => get(`${UNITS}/${id}`);
+export const postParadata = (body) => postRequest(PARADATA)(body);
diff --git a/src/api/remote/db/data-function.js b/src/api/remote/db/data-function.js
index 8fbd41f..81ef509 100644
--- a/src/api/remote/db/data-function.js
+++ b/src/api/remote/db/data-function.js
@@ -1,8 +1,15 @@
import { setDataIntoDB } from 'indexedDB/service/db-action';
-import { getSurveyUnitsAPI, getUnit, getSurveyUnitsExtended } from '../call';
-import D from 'dictionary/db';
+import {
+ getSurveyUnitsAPI,
+ getUnit,
+ getSurveyUnitsExtended,
+ postParadata,
+} from '../call';
+import { dicDb } from 'dictionary';
-export const getDataFromApiOld = ({ setError, setData = () => {} }) =>
+export const postData = (data) => postParadata(data);
+
+export const getDataFromApi = ({ setError, setData = () => {}, setLoading }) =>
getSurveyUnitsAPI()
.then(async (surveyUnits) => {
const result = await Promise.all(
@@ -13,17 +20,19 @@ export const getDataFromApiOld = ({ setError, setData = () => {} }) =>
return result;
})
.then((units) => {
- setDataIntoDB(D.surveyUnitDB, units);
+ setDataIntoDB(dicDb.surveyUnitDB, units);
setData && setData(units);
})
+ .then(setLoading(false))
.catch((e) => {
+ setLoading(false);
setError(`Errror : ${e}`);
});
-export const getDataFromAPI = ({ setError }) =>
+export const getDataFromAPIExtended = ({ setError }) =>
getSurveyUnitsExtended()
.then((surveyUnits) => {
- setDataIntoDB(D.surveyUnitDB, surveyUnits);
+ setDataIntoDB(dicDb.surveyUnitDB, surveyUnits);
})
.catch((e) => {
setError(`Errror : ${e}`);
diff --git a/src/api/remote/paths.js b/src/api/remote/paths.js
index 678fafd..4a334ab 100644
--- a/src/api/remote/paths.js
+++ b/src/api/remote/paths.js
@@ -1,6 +1,8 @@
import { getEnvVar } from 'utils/env';
const BASE_URL = getEnvVar('PEARL_API_URL');
-
+const STROMAE_URL = getEnvVar('STROMAE_API_URL')
export const SURVEY_UNITS = `${BASE_URL}/api/survey-units`;
export const UNITS = `${BASE_URL}/api/survey-unit`;
+
+export const PARADATA = `${STROMAE_URL}/api/paradata`;
\ No newline at end of file
diff --git a/src/components/app/app.spec.js b/src/components/app/app.spec.js
deleted file mode 100644
index 44cc9bd..0000000
--- a/src/components/app/app.spec.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import React from 'react';
-import { render, screen } from '@testing-library/react';
-import App from './';
-
-test('renders TODO', () => {
- render();
- const linkElement = screen.getByText(/TODO later/i);
- expect(linkElement).toBeInTheDocument();
-});
diff --git a/src/components/app/component.js b/src/components/app/component.js
deleted file mode 100644
index fd9e587..0000000
--- a/src/components/app/component.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import React from 'react';
-
-const App = () =>
TODO later
;
-
-export default App;
diff --git a/src/components/common/list-ue/component.js b/src/components/common/list-ue/component.js
index 8d2b527..a978c66 100644
--- a/src/components/common/list-ue/component.js
+++ b/src/components/common/list-ue/component.js
@@ -7,7 +7,7 @@ import Divider from '@material-ui/core/Divider';
import {
getFavoriteNumber,
getPrivilegedPerson,
-} from '../../../utils/survey-unit/surveyUnit';
+} from 'utils/survey-unit/';
// https://codesandbox.io/s/5wqo7z2np4 for loading data
// TODO :
diff --git a/src/components/common/loader/component.js b/src/components/common/loader/component.js
new file mode 100644
index 0000000..0622e05
--- /dev/null
+++ b/src/components/common/loader/component.js
@@ -0,0 +1,44 @@
+import React from 'react';
+import { makeStyles } from '@material-ui/core/styles';
+import LinearProgress from '@material-ui/core/LinearProgress';
+import logoMapex from './logoMapex.svg';
+
+const useStyles = makeStyles((theme) => ({
+ root: {
+ textAlign: 'center',
+ },
+ colorPrimary: {
+ backgroundColor: '#FF780A',
+ },
+ barColorPrimary: {
+ backgroundColor: '#B2DFDB',
+ },
+ imgBlock: {
+ display: 'flex',
+ justifyContent: 'center',
+ alignItems: 'center',
+ },
+ img: {
+ maxWidth: '500px',
+ display: 'block',
+ },
+}));
+
+const Loader = () => {
+ const classes = useStyles();
+ return (
+
+
+
+
+
+
+ );
+};
+
+export default Loader;
diff --git a/src/components/favorite/index.js b/src/components/common/loader/index.js
similarity index 100%
rename from src/components/favorite/index.js
rename to src/components/common/loader/index.js
diff --git a/src/components/common/loader/logoMapex.svg b/src/components/common/loader/logoMapex.svg
new file mode 100644
index 0000000..0c81744
--- /dev/null
+++ b/src/components/common/loader/logoMapex.svg
@@ -0,0 +1,83 @@
+
+
+
diff --git a/src/components/common/map/component.js b/src/components/common/map/component.js
index 15aa81e..1126af9 100644
--- a/src/components/common/map/component.js
+++ b/src/components/common/map/component.js
@@ -5,10 +5,7 @@ import { MapContainer, Marker, TileLayer, Popup } from 'react-leaflet';
import { Link } from 'react-router-dom';
import L from 'leaflet';
-import {
- getPrivilegedPerson,
- getFavoriteNumber,
-} from 'utils/survey-unit/surveyUnit';
+import { getPrivilegedPerson, getFavoriteNumber } from 'utils/survey-unit';
import icon from 'leaflet/dist/images/marker-icon.png';
import iconShadow from 'leaflet/dist/images/marker-shadow.png';
import UE from '../ue';
diff --git a/src/components/common/modal/component.js b/src/components/common/modal/component.js
new file mode 100644
index 0000000..500c38b
--- /dev/null
+++ b/src/components/common/modal/component.js
@@ -0,0 +1,39 @@
+import React from 'react';
+import Button from '@material-ui/core/Button';
+import Dialog from '@material-ui/core/Dialog';
+import DialogActions from '@material-ui/core/DialogActions';
+import DialogContent from '@material-ui/core/DialogContent';
+import DialogContentText from '@material-ui/core/DialogContentText';
+import DialogTitle from '@material-ui/core/DialogTitle';
+
+const ModalReperage = ({ open, setOpen, handleSend }) => {
+ const handleClose = () => {
+ setOpen(false);
+ };
+
+ return (
+
+
+
+ );
+};
+
+export default ModalReperage;
diff --git a/src/components/app/index.js b/src/components/common/modal/index.js
similarity index 100%
rename from src/components/app/index.js
rename to src/components/common/modal/index.js
diff --git a/src/components/common/order-filter/component.js b/src/components/common/order-filter/component.js
index 578af36..de896f3 100644
--- a/src/components/common/order-filter/component.js
+++ b/src/components/common/order-filter/component.js
@@ -11,7 +11,7 @@ import ListItem from '@material-ui/core/ListItem';
import Divider from '@material-ui/core/Divider';
import ButtonIcon from '../icon-button/component';
import CloseIcon from '@material-ui/icons/Close';
-import D from 'dictionary/app/order-filter';
+import D from 'dictionary/components/common/order-filter/order-filter';
import Order from './order';
import Survey from './survey';
import FavoriteFilter from './favorite';
@@ -78,6 +78,7 @@ const OrderFilter = ({ campaigns, favorites, setOpen }) => {
query.delete('sort');
}
history.replace({ search: query.toString() });
+ // eslint-disable-next-line react-hooks/exhaustive-deps
}, [sortCriteria, history]);
const buildStateFromCampaign = (campaigns) =>
@@ -110,6 +111,7 @@ const OrderFilter = ({ campaigns, favorites, setOpen }) => {
query.delete('campaigns');
}
history.replace({ search: query.toString() });
+ // eslint-disable-next-line react-hooks/exhaustive-deps
}, [stateCampaign, history]);
const buildArrayfromFavorites = (favorites) => {
diff --git a/src/components/common/order-filter/favorite/component.js b/src/components/common/order-filter/favorite/component.js
index 0d62752..b826a1e 100644
--- a/src/components/common/order-filter/favorite/component.js
+++ b/src/components/common/order-filter/favorite/component.js
@@ -3,7 +3,7 @@ import FormGroup from '@material-ui/core/FormGroup';
import FormControlLabel from '@material-ui/core/FormControlLabel';
import Checkbox from '@material-ui/core/Checkbox';
import Item from '../item';
-import D from 'dictionary/app/order-filter';
+import D from 'dictionary/components/common/order-filter/order-filter';
// TODO -> Include checkbox labels into dictionnary
diff --git a/src/components/common/order-filter/order/component.js b/src/components/common/order-filter/order/component.js
index 53f341c..8794134 100644
--- a/src/components/common/order-filter/order/component.js
+++ b/src/components/common/order-filter/order/component.js
@@ -2,7 +2,7 @@ import React from 'react';
import FormGroup from '@material-ui/core/FormGroup';
import FormControlLabel from '@material-ui/core/FormControlLabel';
import Item from '../item';
-import D from 'dictionary/app/order-filter';
+import D from 'dictionary/components/common/order-filter/order-filter';
import Radio from '@material-ui/core/Radio';
import RadioGroup from '@material-ui/core/RadioGroup';
diff --git a/src/components/common/order-filter/priority/component.js b/src/components/common/order-filter/priority/component.js
index 25395c8..21d67e6 100644
--- a/src/components/common/order-filter/priority/component.js
+++ b/src/components/common/order-filter/priority/component.js
@@ -3,7 +3,7 @@ import FormGroup from '@material-ui/core/FormGroup';
import FormControlLabel from '@material-ui/core/FormControlLabel';
import Checkbox from '@material-ui/core/Checkbox';
import Item from '../item';
-import D from 'dictionary/app/order-filter';
+import D from 'dictionary/components/common/order-filter/order-filter';
// TODO -> Include checkbox labels into dictionnary
diff --git a/src/components/common/order-filter/survey/component.js b/src/components/common/order-filter/survey/component.js
index ed603f6..81c940d 100644
--- a/src/components/common/order-filter/survey/component.js
+++ b/src/components/common/order-filter/survey/component.js
@@ -3,7 +3,7 @@ import FormGroup from '@material-ui/core/FormGroup';
import FormControlLabel from '@material-ui/core/FormControlLabel';
import Checkbox from '@material-ui/core/Checkbox';
import Item from '../item';
-import D from 'dictionary/app/order-filter';
+import D from 'dictionary/components/common/order-filter/order-filter';
const Survey = ({ campaigns, state, setState }) => {
const handleChange = (event) => {
diff --git a/src/components/common/search-bar/component.js b/src/components/common/search-bar/component.js
index 6c3b50c..b2fbe76 100644
--- a/src/components/common/search-bar/component.js
+++ b/src/components/common/search-bar/component.js
@@ -5,7 +5,7 @@ import InputBase from '@material-ui/core/InputBase';
import TuneIcon from '@material-ui/icons/Tune';
import SearchIcon from '@material-ui/icons/Search';
import ButtonIcon from '../icon-button';
-import D from '../../../dictionary/app/home';
+import { dicSearchBar } from 'dictionary';
import DrawerOrderFilter from '../drawer-order-filter';
import { useLocation, useHistory } from 'react-router-dom';
@@ -40,7 +40,7 @@ const SearchBar = ({ campaigns, open, setOpen, favorites }) => {
} else {
query.delete('textSearch');
}
- history.replace({search: query.toString() });
+ history.replace({ search: query.toString() });
}, [textSearch, history]);
const handleChange = (e) => {
@@ -57,9 +57,9 @@ const SearchBar = ({ campaigns, open, setOpen, favorites }) => {
/>
{
icon={}
onClick={() => setOpen(true)}
/>
-
+
);
};
diff --git a/src/components/common/survey-unit-card/component.js b/src/components/common/survey-unit-card/component.js
index c2cd09f..0a17b4a 100644
--- a/src/components/common/survey-unit-card/component.js
+++ b/src/components/common/survey-unit-card/component.js
@@ -1,5 +1,4 @@
-import React, { useEffect, useState } from 'react';
-
+import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
import Phone from './phone';
import Place from './place';
@@ -7,8 +6,6 @@ import OtherContact from './other-contact';
import ListAction from './list-action';
import Mail from './mail';
import Note from './note';
-import { useParams, useHistory } from 'react-router-dom';
-
import PlaceIcon from '@material-ui/icons/Place';
import PhoneIcon from '@material-ui/icons/Phone';
import MessageIcon from '@material-ui/icons/Message';
@@ -22,14 +19,6 @@ import NavigateBeforeIcon from '@material-ui/icons/NavigateBefore';
import FavoriteIcon from '@material-ui/icons/Favorite';
import FavoriteBorderOutlinedIcon from '@material-ui/icons/FavoriteBorderOutlined';
import Divider from '@material-ui/core/Divider';
-import { getById } from 'indexedDB/service/db-action';
-import D from 'dictionary/db';
-import DCalendar from 'dictionary/app/calendar';
-
-import {
- getPrivilegedPerson,
- getFavoriteNumber,
-} from 'utils/survey-unit/surveyUnit';
const useStyles = makeStyles((theme) => ({
root: {
@@ -48,52 +37,16 @@ const useStyles = makeStyles((theme) => ({
},
}));
-const SurveyUnitCard = () => {
- const classes = useStyles();
+const SurveyUnitCard = ({
+ privilegPerson,
+ goToPreviousPath,
+ surveyUnit,
+ favoritePhone,
+ googleCalendarUrl,
+ pathReperage,
+}) => {
const isFavorite = false; // TODO Favorite stored into DB ?
- const { id } = useParams();
- const history = useHistory();
- const [surveyUnit, setSurveyUnit] = useState([]);
- const [loading, setLoading] = useState(true);
- const [privilegPerson, setPrivilegPerson] = useState({});
- const [favoritePhone, setFavoritePhone] = useState('');
- const [error, setError] = useState('');
-
- useEffect(() => {
- getById(D.surveyUnitDB, id).then((unit) => {
- if (unit) {
- setSurveyUnit(unit);
- setPrivilegPerson(getPrivilegedPerson(unit.persons));
- setLoading(false);
- } else {
- setError('No unit found');
- }
- });
- }, [id]);
-
- useEffect(() => {}, [surveyUnit]);
-
- useEffect(() => {
- setFavoritePhone(getFavoriteNumber(privilegPerson.phoneNumbers));
- }, [privilegPerson]);
-
- if (error) return {error}
;
-
- const goToPreviousPath = () => {
- history.goBack();
- };
-
- const makeGoogleCalendarUrl = () => {
- if (!loading) {
- const baseUrl = 'http://www.google.com/calendar/event?action=TEMPLATE';
-
- const eventName = `${DCalendar.eventName} ${privilegPerson.firstName} ${privilegPerson.lastName}`;
- const location = `${surveyUnit.address.l4} ${surveyUnit.address.l6}`;
- const details = 'Add the link of the UE on APP';
-
- return `${baseUrl}&text=${eventName}&location=${location}&details=${details}`;
- }
- };
+ const classes = useStyles();
return (
@@ -126,43 +79,47 @@ const SurveyUnitCard = () => {
/>
}
- href={`sms:${favoritePhone};?&body=Bonjour ${privilegPerson.firstName}, j'arrive dans 10 minutes.`}
+ href={`sms:${favoritePhone};?&body=Bonjour ${
+ privilegPerson && privilegPerson.firstName
+ }, j'arrive dans 10 minutes.`}
color="inherit"
/>
}
color="inherit"
- href={`mailto:${privilegPerson.email}`}
+ href={`mailto:${privilegPerson && privilegPerson.email}`}
/>
}
color="inherit"
- href={makeGoogleCalendarUrl()}
+ href={googleCalendarUrl}
/>
}
href={`https://www.google.com/maps/dir/?api=1&destination=${
- !loading && surveyUnit.address.l4
- }+${!loading && surveyUnit.address.l6}`}
+ surveyUnit && surveyUnit.address.l4
+ }+${surveyUnit && surveyUnit.address.l6}`}
color="inherit"
/>
-
-
-
+
+
+
p.id !== privilegPerson.id)
- : []
+ surveyUnit &&
+ surveyUnit.persons.filter((p) => p.id !== privilegPerson.id)
}
/>
);
diff --git a/src/components/common/survey-unit-card/list-action/component.js b/src/components/common/survey-unit-card/list-action/component.js
index ec0bc9d..80b867a 100644
--- a/src/components/common/survey-unit-card/list-action/component.js
+++ b/src/components/common/survey-unit-card/list-action/component.js
@@ -3,8 +3,9 @@ import ListItemText from '@material-ui/core/ListItemText';
import ListItem from '@material-ui/core/ListItem';
import Divider from '@material-ui/core/Divider';
import Section from '../section';
-import D from '../../../../dictionary/app/unit-card';
+import { dicSurveyUnit } from 'dictionary';
import { makeStyles } from '@material-ui/core/styles';
+import { Link } from 'react-router-dom';
const useStyles = makeStyles((theme) => ({
ListItem: {
@@ -13,7 +14,7 @@ const useStyles = makeStyles((theme) => ({
},
}));
-const ListAction = ({ hrefSms, hrefCalendar, actionReperage }) => {
+const ListAction = ({ hrefSms, hrefCalendar, pathReperage }) => {
const classes = useStyles();
return (
@@ -24,11 +25,16 @@ const ListAction = ({ hrefSms, hrefCalendar, actionReperage }) => {
target="_blank"
href={hrefSms}
>
-
+
-
-
+
+
{
target="_blank"
href={hrefCalendar}
>
-
+
);
diff --git a/src/components/common/survey-unit-card/mail/component.js b/src/components/common/survey-unit-card/mail/component.js
index 73e891d..158f76c 100644
--- a/src/components/common/survey-unit-card/mail/component.js
+++ b/src/components/common/survey-unit-card/mail/component.js
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import ListItemText from '@material-ui/core/ListItemText';
import ListItem from '@material-ui/core/ListItem';
import Section from '../section';
-import D from '../../../../dictionary/app/unit-card';
+import { dicSurveyUnit } from 'dictionary';
import ButtonIcon from '../../icon-button';
import MailIcon from '@material-ui/icons/Mail';
@@ -19,10 +19,10 @@ const useStyles = makeStyles((theme) => ({
const Mail = ({ mail }) => {
const classes = useStyles();
return (
-
+
- } href={`mailto:${mail}`}/>
+ } href={`mailto:${mail}`} />
);
diff --git a/src/components/common/survey-unit-card/note/component.js b/src/components/common/survey-unit-card/note/component.js
index 8f4d2a0..1e00eb7 100644
--- a/src/components/common/survey-unit-card/note/component.js
+++ b/src/components/common/survey-unit-card/note/component.js
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import ListItemText from '@material-ui/core/ListItemText';
import ListItem from '@material-ui/core/ListItem';
import Section from '../section';
-import D from '../../../../dictionary/app/unit-card';
+import { dicSurveyUnit } from 'dictionary';
import { makeStyles } from '@material-ui/core/styles';
const useStyles = makeStyles((theme) => ({
@@ -16,7 +16,7 @@ const useStyles = makeStyles((theme) => ({
const Note = ({ note }) => {
const classes = useStyles();
return (
-
+
diff --git a/src/components/common/survey-unit-card/other-contact/component.js b/src/components/common/survey-unit-card/other-contact/component.js
index 984738a..f904a17 100644
--- a/src/components/common/survey-unit-card/other-contact/component.js
+++ b/src/components/common/survey-unit-card/other-contact/component.js
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import ListItemText from '@material-ui/core/ListItemText';
import ListItem from '@material-ui/core/ListItem';
import Section from '../section';
-import D from 'dictionary/app/unit-card';
+import { dicSurveyUnit } from 'dictionary';
import PersonIcon from '@material-ui/icons/Person';
import ListItemIcon from '@material-ui/core/ListItemIcon';
@@ -23,8 +23,11 @@ const useStyles = makeStyles((theme) => ({
const OtherContact = ({ otherPersons }) => {
const classes = useStyles();
+
+ if (otherPersons.length === 0) return null;
+
return (
-
+
{otherPersons.map(
({ firstName, lastName, email, phoneNumbers }, index) => (
<>
@@ -35,14 +38,14 @@ const OtherContact = ({ otherPersons }) => {
{`${firstName} ${lastName}`}
{email}
- } href={`mailto:${email}`}/>
+ } href={`mailto:${email}`} />
{phoneNumbers.map(({ source, number }) => (
<>
{number}
- } href={`tel:${number}`}/>
+ } href={`tel:${number}`} />
>
))}
diff --git a/src/components/common/survey-unit-card/phone/component.js b/src/components/common/survey-unit-card/phone/component.js
index 1d6dc70..c0b60df 100644
--- a/src/components/common/survey-unit-card/phone/component.js
+++ b/src/components/common/survey-unit-card/phone/component.js
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import ListItemText from '@material-ui/core/ListItemText';
import ListItem from '@material-ui/core/ListItem';
import Section from '../section';
-import D from '../../../../dictionary/app/unit-card';
+import { dicSurveyUnit } from 'dictionary';
import StarIcon from '@material-ui/icons/Star';
import StarBorderIcon from '@material-ui/icons/StarBorder';
import ButtonIcon from '../../icon-button';
@@ -21,18 +21,14 @@ const useStyles = makeStyles((theme) => ({
const Phone = ({ phoneNumbers }) => {
const classes = useStyles();
return (
-
+
{phoneNumbers.map(({ source, favorite, number }) => (
<>
{number}
- } href={`tel:${number}`}/>
- :
- }
- />
+ } href={`tel:${number}`} />
+ : } />
>
))}
diff --git a/src/components/common/survey-unit-card/place/component.js b/src/components/common/survey-unit-card/place/component.js
index bcbab56..0853b6a 100644
--- a/src/components/common/survey-unit-card/place/component.js
+++ b/src/components/common/survey-unit-card/place/component.js
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import ListItemText from '@material-ui/core/ListItemText';
import ListItem from '@material-ui/core/ListItem';
import Section from '../section';
-import D from '../../../../dictionary/app/unit-card';
+import { dicSurveyUnit } from 'dictionary';
import ButtonIcon from '../../icon-button';
import PlaceIcon from '@material-ui/icons/Place';
@@ -19,10 +19,13 @@ const useStyles = makeStyles((theme) => ({
const Place = ({ address }) => {
const classes = useStyles();
return (
-
+
- } href={`https://www.google.com/maps/dir/?api=1&destination=${address.l4}+${address.l6}`}/>
+ }
+ href={`https://www.google.com/maps/dir/?api=1&destination=${address.l4}+${address.l6}`}
+ />
);
diff --git a/src/components/initializer.js b/src/components/initializer.js
new file mode 100644
index 0000000..9a6ec31
--- /dev/null
+++ b/src/components/initializer.js
@@ -0,0 +1,21 @@
+import React, { useState, useEffect } from 'react';
+import API from 'api';
+import { firstLoadingState } from 'components/state/loading';
+import { useRecoilState } from 'recoil';
+import LoadingWrapper from 'components/loading-wrapper';
+
+const Initializer = ({ children }) => {
+ const [loading, setLoading] = useRecoilState(firstLoadingState);
+ const [error, setError] = useState('');
+
+ useEffect(() => {
+ loading && API.getDataFromApi({ setError, setLoading });
+ }, [loading,setLoading]);
+
+ // TODO
+ if (error) console.log({ error });
+
+ return ;
+};
+
+export default Initializer;
diff --git a/src/components/loading-wrapper.js b/src/components/loading-wrapper.js
new file mode 100644
index 0000000..b1433d2
--- /dev/null
+++ b/src/components/loading-wrapper.js
@@ -0,0 +1,14 @@
+import React from 'react';
+import Loader from 'components/common/loader';
+import Root from 'components/root';
+import { firstLoadingState } from 'components/state/loading';
+import { useRecoilState } from 'recoil';
+
+const LoadingWrapper = () => {
+ const [loading] = useRecoilState(firstLoadingState);
+ if (loading) return ;
+
+ return ;
+};
+
+export default LoadingWrapper;
diff --git a/src/components/orchestrator/collect/component.js b/src/components/orchestrator/collect/component.js
new file mode 100644
index 0000000..7c7cdc9
--- /dev/null
+++ b/src/components/orchestrator/collect/component.js
@@ -0,0 +1,35 @@
+import React from 'react';
+import Orchestrator from '../orchestrator';
+
+const Collect = ({ source, data = {}, pagination }) => {
+ const { COLLECTED, ...dataForCollect } = data;
+
+ // async function suggesterFetcher(url) {
+ // const response = await fetch(url, {
+ // headers: { Accept: 'application/json' },
+ // });
+ // return response;
+ // }
+
+ return (
+
+ );
+};
+
+export default Collect;
diff --git a/src/components/notifications/index.js b/src/components/orchestrator/collect/index.js
similarity index 100%
rename from src/components/notifications/index.js
rename to src/components/orchestrator/collect/index.js
diff --git a/src/components/orchestrator/index.js b/src/components/orchestrator/index.js
new file mode 100644
index 0000000..69e3b5d
--- /dev/null
+++ b/src/components/orchestrator/index.js
@@ -0,0 +1 @@
+export { default as CollectOrchestrator } from 'components/orchestrator/collect';
diff --git a/src/components/orchestrator/navigation/component.js b/src/components/orchestrator/navigation/component.js
new file mode 100644
index 0000000..14471dd
--- /dev/null
+++ b/src/components/orchestrator/navigation/component.js
@@ -0,0 +1,52 @@
+import React from 'react';
+import { makeStyles } from '@material-ui/core';
+import ButtonUI from 'components/common/button';
+import CardActions from '@material-ui/core/CardActions';
+
+const useStyles = makeStyles((theme) => ({
+ root: {
+ backgroundColor: 'whitesmoke',
+ bottom: 0,
+ left: 0,
+ top: 'auto',
+ width: '100%',
+ position: 'fixed',
+ display: 'flex',
+ justifyContent: 'flex-end',
+ alignItems: 'center',
+ flex: '0 0 auto',
+ borderTop: '1px solid grey',
+ paddingTop: '3px',
+ paddingBottom: '2px',
+ },
+ navButton: {
+ '&:last-child': {
+ marginRight: '5px',
+ marginLeft: '5px',
+ },
+ },
+}));
+
+const Navigation = ({
+ isFirstPage,
+ goPrevious,
+ goNext,
+ isLastPage,
+}) => {
+ const classes = useStyles();
+
+ return (
+
+
+
+
+
+
+ );
+};
+
+export default Navigation;
diff --git a/src/utils/data-sync/index.js b/src/components/orchestrator/navigation/index.js
similarity index 100%
rename from src/utils/data-sync/index.js
rename to src/components/orchestrator/navigation/index.js
diff --git a/src/components/orchestrator/orchestrator.js b/src/components/orchestrator/orchestrator.js
new file mode 100644
index 0000000..830664c
--- /dev/null
+++ b/src/components/orchestrator/orchestrator.js
@@ -0,0 +1,226 @@
+import React, { useState } from 'react';
+import * as lunatic from '@inseefr/lunatic';
+import { ListItem, makeStyles } from '@material-ui/core';
+import List from '@material-ui/core/List';
+import ButtonUI from 'components/common/button';
+import Divider from '@material-ui/core/Divider';
+import Navigation from './navigation';
+import API from 'api';
+import ModalReperage from 'components/common/modal';
+
+const useStyles = makeStyles((theme) => ({
+ root: {
+ width: '100%',
+ backgroundColor: theme.palette.background.paper,
+ maxHeight: '100%',
+ overflow: 'auto',
+ },
+ component: {
+ padding: '20px',
+ overflow: 'visible',
+ marginBottom: '10px',
+ '& *': { fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif' },
+ },
+ buttonValidate: {
+ justifyContent: 'center',
+ marginTop: '10px',
+ },
+}));
+
+const Orchestrator = ({
+ savingType,
+ preferences,
+ source,
+ features,
+ pagination = false,
+ data,
+ management,
+ filterDescription,
+ suggesters,
+ autoSuggesterLoading,
+ suggesterFetcher,
+}) => {
+ const {
+ questionnaire,
+ components,
+ handleChange,
+ bindings,
+ pagination: {
+ goNext,
+ goPrevious,
+ page,
+ setPage,
+ isFirstPage,
+ isLastPage,
+ flow,
+ },
+ } = lunatic.useLunatic(source, data, {
+ savingType,
+ preferences,
+ features,
+ management,
+ pagination,
+ suggesters,
+ autoSuggesterLoading,
+ suggesterFetcher,
+ });
+
+ const classes = useStyles();
+ const [loading, setLoading] = useState(false);
+ const [openModal, setOpenModal] = useState(false);
+ const [textSendData, setTextSendData] = useState('');
+
+ const displayComponents = function () {
+ const structure = components.reduce((acc, curr) => {
+ if (curr.componentType === 'Sequence') {
+ acc[curr.id] = [];
+ return acc;
+ }
+ if (curr.componentType === 'Subsequence') {
+ acc[curr.id] = [];
+ if (
+ curr.hierarchy &&
+ curr.hierarchy.sequence &&
+ !!acc[curr.hierarchy.sequence.id]
+ ) {
+ acc[curr.hierarchy.sequence.id].push(curr);
+ }
+ return acc;
+ }
+ if (
+ curr.hierarchy &&
+ curr.hierarchy.subSequence &&
+ !!acc[curr.hierarchy.sequence.id]
+ ) {
+ acc[curr.hierarchy.subSequence.id].push(curr);
+ } else if (
+ curr.hierarchy &&
+ curr.hierarchy.sequence &&
+ acc[curr.hierarchy.sequence.id]
+ ) {
+ acc[curr.hierarchy.sequence.id].push(curr);
+ }
+ return acc;
+ }, {});
+ return components.map((comp) => {
+ if (shouldBeDisplayed(structure, comp)) {
+ return displayComponent(structure, comp);
+ }
+ return null;
+ });
+ };
+
+ const shouldBeDisplayed = function (structure, comp) {
+ const { hierarchy } = comp;
+ if (!hierarchy) {
+ return true;
+ }
+ if (!hierarchy.sequence) {
+ if (
+ !hierarchy.subSequence ||
+ !structure[hierarchy.subSequence.id] ||
+ hierarchy.subSequence.id === comp.id
+ ) {
+ return true;
+ }
+ return false;
+ }
+ if (
+ !structure[hierarchy.sequence.id] ||
+ hierarchy.sequence.id === comp.id
+ ) {
+ return true;
+ }
+ return false;
+ };
+
+ const displayComponent = function (componentsStructure, comp) {
+ const { id, componentType } = comp;
+ const Component = lunatic[componentType];
+ if (componentType !== 'FilterDescription') {
+ return (
+ <>
+
+
+
+ {displaySubComponents(componentsStructure, componentType, id)}
+
+
+
+ >
+ );
+ } else {
+ return null;
+ }
+ };
+
+ const displaySubComponents = function (
+ componentsStructure,
+ componentType,
+ compId
+ ) {
+ const subComponents = componentsStructure[compId];
+ if (subComponents && subComponents.length) {
+ return (
+
+ {subComponents.map((q) => displayComponent(componentsStructure, q))}
+
+ );
+ }
+ return null;
+ };
+
+ const handleSend = () => {
+ API.postData(lunatic.getState(questionnaire))
+ .then(() => setTextSendData('Les données ont bien été envoyées'))
+ .catch((e) => {
+ console.log(e);
+ setTextSendData('Une erreur est survenue');
+ });
+ setOpenModal(false);
+ };
+
+ return (
+
+ {displayComponents()}
+ setOpenModal(true)}
+ />
+
+ {textSendData}
+ {pagination && (
+
+ )}
+
+ );
+};
+
+export default Orchestrator;
diff --git a/src/components/favorite/component.js b/src/components/pages/favorite/component.js
similarity index 100%
rename from src/components/favorite/component.js
rename to src/components/pages/favorite/component.js
diff --git a/src/components/home/index.js b/src/components/pages/favorite/index.js
similarity index 100%
rename from src/components/home/index.js
rename to src/components/pages/favorite/index.js
diff --git a/src/components/home/component.js b/src/components/pages/home/component.js
similarity index 70%
rename from src/components/home/component.js
rename to src/components/pages/home/component.js
index 8e49969..c6c87ab 100644
--- a/src/components/home/component.js
+++ b/src/components/pages/home/component.js
@@ -1,15 +1,18 @@
import React, { useEffect, useState } from 'react';
-import SearchBar from '../common/search-bar';
+import SearchBar from '../../common/search-bar';
+import { loadingState } from 'components/state/loading';
+import { useRecoilState } from 'recoil';
import { makeStyles } from '@material-ui/core/styles';
import WrapperListUE from 'components/common/list-ue';
import { getAll } from 'indexedDB/service/db-action';
-import D from '../../dictionary/db';
+import { dicDb } from 'dictionary';
import { getValuesOfKey } from 'indexedDB/service/db-action';
import MapLeaflet from 'components/common/map';
import { useLocation } from 'react-router-dom';
import { dataFavorite } from 'data-mock/favorite';
import { sortOnColumnCompareFunction } from 'utils/survey-unit/order';
import { applyFilters } from 'utils/survey-unit';
+import Loader from 'components/common/loader';
const useStyles = makeStyles((theme) => ({
root: {
@@ -34,31 +37,29 @@ const useQuery = () => new URLSearchParams(useLocation().search);
const Home = () => {
let query = useQuery();
+ const [loading, setLoading] = useRecoilState(loadingState);
const [surveyUnits, setSurveyUnits] = useState([]);
const [campaigns, setCampaigns] = useState([]);
const [filteredSurveyUnits, setFilteredSurveyUnits] = useState([]);
- const [favorites, setFavorites] = useState(dataFavorite); //TODO Data into indexedDB
- const [loading, setLoading] = useState(true);
+ const [favorites] = useState(dataFavorite); //TODO Data into indexedDB
const [isDrawerOpen, setIsDrawerOpen] = useState(false);
const [map, setMap] = useState();
const classes = useStyles();
- const [saveQuery, setSaveQuery] = useState(query.toString());
const refreshSortCriteria = () => query.get('sort') || 'remainingDay';
// Loading Data From IndexedDB
useEffect(() => {
+ setLoading(true);
Promise.all([
- getAll(D.surveyUnitDB).then((units) => {
+ getAll(dicDb.surveyUnitDB).then((units) => {
setSurveyUnits(units);
}),
- getValuesOfKey(D.surveyUnitDB, 'campaign').then((camp) => {
+ getValuesOfKey(dicDb.surveyUnitDB, 'campaign').then((camp) => {
setCampaigns(camp);
}),
- ]).then(() => {
- setLoading(false);
- });
- }, []);
+ ]).then(setLoading(false));
+ }, [setLoading]);
const [sortCriteria, setSortCriteria] = useState(refreshSortCriteria());
@@ -95,40 +96,38 @@ const Home = () => {
}, [query.toString()]);
useEffect(() => {
+ // add changement of filter, sortcreteria or SU we refresh filteredSU
const sortSU = (su) => su.sort(sortOnColumnCompareFunction(sortCriteria));
const filteredSU = applyFilters(surveyUnits, filters);
setFilteredSurveyUnits(sortSU(filteredSU));
}, [filters, sortCriteria, surveyUnits]);
- // To Do Loading page
- if (loading) return {"I'm loading dude"}
;
+ if (loading) return ;
return (
- <>
-
-
- {/*
Map Link
+
+
+ {/* Map Link
Liste Link */}
-
- {/* */}
-
-
-
- >
+
+ {/*
*/}
+
+
+
);
};
diff --git a/src/components/pages/home/index.js b/src/components/pages/home/index.js
new file mode 100644
index 0000000..76f86e1
--- /dev/null
+++ b/src/components/pages/home/index.js
@@ -0,0 +1 @@
+export { default } from './component';
\ No newline at end of file
diff --git a/src/components/notifications/component.js b/src/components/pages/notifications/component.js
similarity index 100%
rename from src/components/notifications/component.js
rename to src/components/pages/notifications/component.js
diff --git a/src/components/pages/notifications/index.js b/src/components/pages/notifications/index.js
new file mode 100644
index 0000000..b404d7f
--- /dev/null
+++ b/src/components/pages/notifications/index.js
@@ -0,0 +1 @@
+export { default } from './component';
diff --git a/src/components/pages/reperage/component.js b/src/components/pages/reperage/component.js
new file mode 100644
index 0000000..5afa30a
--- /dev/null
+++ b/src/components/pages/reperage/component.js
@@ -0,0 +1,61 @@
+import React, { useEffect } from 'react';
+import { makeStyles } from '@material-ui/core/styles';
+import { useHistory } from 'react-router-dom';
+import AppBar from '@material-ui/core/AppBar';
+import Toolbar from '@material-ui/core/Toolbar';
+
+import ButtonIcon from 'components/common/icon-button';
+import NavigateBeforeIcon from '@material-ui/icons/NavigateBefore';
+
+import quest from 'questionnaire-lunatic/simpsons-question';
+
+import { CollectOrchestrator } from 'components/orchestrator';
+
+const useStyles = makeStyles((theme) => ({
+ root: {
+ marginBottom: '60px',
+ },
+ appBar: {},
+ title: {
+ flexGrow: 1,
+ },
+ buttonTopRight: {
+ marginRight: theme.spacing(2),
+ },
+ body: {
+ textAlign: 'center',
+ paddingTop: '0.3em',
+ },
+}));
+
+const Reperage = () => {
+ const history = useHistory();
+ const classes = useStyles();
+
+ useEffect(() => {
+ window.scrollTo(0, 0);
+ }, []);
+
+ return (
+
+
+
+ }
+ onClick={() => history.goBack()}
+ />
+
+
Questionnaire de repérage
+
+
+
+
+
+
+
+ );
+};
+
+export default Reperage;
diff --git a/src/components/pages/reperage/index.js b/src/components/pages/reperage/index.js
new file mode 100644
index 0000000..b404d7f
--- /dev/null
+++ b/src/components/pages/reperage/index.js
@@ -0,0 +1 @@
+export { default } from './component';
diff --git a/src/components/pages/survey-unit/component.js b/src/components/pages/survey-unit/component.js
new file mode 100644
index 0000000..70c862e
--- /dev/null
+++ b/src/components/pages/survey-unit/component.js
@@ -0,0 +1,58 @@
+import React, { useEffect, useState } from 'react';
+
+import { useParams, useHistory } from 'react-router-dom';
+import SurveyUnitCard from 'components/common/survey-unit-card';
+import { getById } from 'indexedDB/service/db-action';
+import {
+ getPrivilegedPerson,
+ getFavoriteNumber,
+ makeGoogleCalendarUrl,
+} from 'utils/survey-unit';
+import { dicDb } from 'dictionary';
+import Loader from 'components/common/loader';
+
+const SurveyUnit = () => {
+ const { id } = useParams();
+ const history = useHistory();
+ const [surveyUnit, setSurveyUnit] = useState([]);
+ const [loading, setLoading] = useState(true);
+ const [privilegPerson, setPrivilegPerson] = useState({});
+ const [favoritePhone, setFavoritePhone] = useState('');
+ const [error, setError] = useState('');
+
+ useEffect(() => {
+ getById(dicDb.surveyUnitDB, id).then((unit) => {
+ if (unit) {
+ setSurveyUnit(unit);
+ setPrivilegPerson(getPrivilegedPerson(unit.persons));
+ setLoading(false);
+ } else {
+ setError('No unit found');
+ }
+ });
+ }, [id]);
+
+ useEffect(() => {
+ setFavoritePhone(getFavoriteNumber(privilegPerson.phoneNumbers));
+ }, [privilegPerson]);
+
+ if (error) return {error}
; // Add button to go back.
+
+ if (loading) return ;
+
+ const goToPreviousPath = () => {
+ history.goBack();
+ };
+ return (
+
+ );
+};
+
+export default SurveyUnit;
diff --git a/src/components/pages/survey-unit/index.js b/src/components/pages/survey-unit/index.js
new file mode 100644
index 0000000..b404d7f
--- /dev/null
+++ b/src/components/pages/survey-unit/index.js
@@ -0,0 +1 @@
+export { default } from './component';
diff --git a/src/components/root/bar-config.js b/src/components/root/bar-config.js
index cb51ddc..c0e6aa6 100644
--- a/src/components/root/bar-config.js
+++ b/src/components/root/bar-config.js
@@ -8,7 +8,7 @@ export const navConfig = [
{ id: 'home', value: '/', label: D.home, icon: },
{
id: 'favorite',
- value: '/favorite',
+ value: '/favoris',
label: D.favorite,
icon: ,
},
diff --git a/src/components/root/component.js b/src/components/root/component.js
index ae70851..8456f73 100644
--- a/src/components/root/component.js
+++ b/src/components/root/component.js
@@ -1,31 +1,34 @@
import React from 'react';
-import { Switch, Route, Redirect } from 'react-router-dom';
-import Home from 'components/home';
-import Favorite from 'components/favorite';
-import Notifications from 'components/notifications';
+import { Switch, BrowserRouter as Router, Route, Redirect } from 'react-router-dom';
+import Home from 'components/pages/home';
+import Favorite from 'components/pages/favorite';
+import Notifications from 'components/pages/notifications';
import Bar from './bar';
-import SurveyUnitCard from 'components/common/survey-unit-card';
-import SyncDataFromAPI from 'utils/data-sync';
+import SurveyUnit from 'components/pages/survey-unit';
+import Reperage from 'components/pages/reperage';
const Root = () => (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
);
export default Root;
diff --git a/src/components/state/loading.js b/src/components/state/loading.js
new file mode 100644
index 0000000..6abbbaa
--- /dev/null
+++ b/src/components/state/loading.js
@@ -0,0 +1,11 @@
+import { atom } from 'recoil';
+
+export const firstLoadingState = atom({
+ key: 'firstloading', // unique ID (with respect to other atoms/selectors)
+ default: true, // default value (aka initial value)
+});
+
+export const loadingState = atom({
+ key: 'loading',
+ default: false,
+});
\ No newline at end of file
diff --git a/src/dictionary/app/calendar.js b/src/dictionary/app/calendar.js
deleted file mode 100644
index e280c72..0000000
--- a/src/dictionary/app/calendar.js
+++ /dev/null
@@ -1,6 +0,0 @@
-const calendar = {
- eventName: 'Rendez-vous avec'
-
-};
-
-export default calendar;
\ No newline at end of file
diff --git a/src/dictionary/app/home.js b/src/dictionary/app/home.js
deleted file mode 100644
index e558d6b..0000000
--- a/src/dictionary/app/home.js
+++ /dev/null
@@ -1,6 +0,0 @@
-const home = {
- searchBar: 'Nom, prénom, enquête',
- searchBarAreaLabel: 'recherche UE'
-};
-
-export default home;
diff --git a/src/dictionary/app/index.js b/src/dictionary/app/index.js
deleted file mode 100644
index 0f265a5..0000000
--- a/src/dictionary/app/index.js
+++ /dev/null
@@ -1,6 +0,0 @@
-import home from './home';
-import other from './other';
-
-const app = { ...home, ...other };
-
-export default app;
diff --git a/src/dictionary/app/other.js b/src/dictionary/app/other.js
deleted file mode 100644
index 4a41609..0000000
--- a/src/dictionary/app/other.js
+++ /dev/null
@@ -1,3 +0,0 @@
-const other = {};
-
-export default other;
diff --git a/src/dictionary/components/common/index.js b/src/dictionary/components/common/index.js
new file mode 100644
index 0000000..fd0f27d
--- /dev/null
+++ b/src/dictionary/components/common/index.js
@@ -0,0 +1,9 @@
+import surveyUnit from './survey-unit-card';
+import searchBar from './search-bar';
+import orderFilter from './order-filter';
+
+export {
+ surveyUnit as dicSurveyUnit,
+ searchBar as dicSearchBar,
+ orderFilter as dicOrderFilter,
+};
diff --git a/src/dictionary/components/common/order-filter/index.js b/src/dictionary/components/common/order-filter/index.js
new file mode 100644
index 0000000..7506ab0
--- /dev/null
+++ b/src/dictionary/components/common/order-filter/index.js
@@ -0,0 +1 @@
+export { default } from './order-filter';
diff --git a/src/dictionary/app/order-filter.js b/src/dictionary/components/common/order-filter/order-filter.js
similarity index 100%
rename from src/dictionary/app/order-filter.js
rename to src/dictionary/components/common/order-filter/order-filter.js
diff --git a/src/dictionary/components/common/search-bar/index.js b/src/dictionary/components/common/search-bar/index.js
new file mode 100644
index 0000000..ae01a2d
--- /dev/null
+++ b/src/dictionary/components/common/search-bar/index.js
@@ -0,0 +1 @@
+export { default } from './search-bar';
diff --git a/src/dictionary/components/common/search-bar/search-bar.js b/src/dictionary/components/common/search-bar/search-bar.js
new file mode 100644
index 0000000..1cd9779
--- /dev/null
+++ b/src/dictionary/components/common/search-bar/search-bar.js
@@ -0,0 +1,6 @@
+const searchBar = {
+ searchBar: 'Nom, prénom, enquête',
+ searchBarAreaLabel: 'recherche UE',
+};
+
+export default searchBar;
diff --git a/src/dictionary/components/common/survey-unit-card/calendar.js b/src/dictionary/components/common/survey-unit-card/calendar.js
new file mode 100644
index 0000000..cb1b7b5
--- /dev/null
+++ b/src/dictionary/components/common/survey-unit-card/calendar.js
@@ -0,0 +1,6 @@
+const calendar = {
+ eventName: 'Rendez-vous avec',
+ baseUrl: 'http://www.google.com/calendar/event?action=TEMPLATE',
+};
+
+export default calendar;
diff --git a/src/dictionary/components/common/survey-unit-card/index.js b/src/dictionary/components/common/survey-unit-card/index.js
new file mode 100644
index 0000000..ab75cbd
--- /dev/null
+++ b/src/dictionary/components/common/survey-unit-card/index.js
@@ -0,0 +1,7 @@
+import dicUnitCard from './unitCard';
+
+import dicCalendar from './calendar';
+
+const surveyUnit = { ...dicUnitCard, ...dicCalendar };
+
+export default surveyUnit;
diff --git a/src/dictionary/app/unit-card.js b/src/dictionary/components/common/survey-unit-card/unitCard.js
similarity index 100%
rename from src/dictionary/app/unit-card.js
rename to src/dictionary/components/common/survey-unit-card/unitCard.js
diff --git a/src/dictionary/components/index.js b/src/dictionary/components/index.js
new file mode 100644
index 0000000..e87c671
--- /dev/null
+++ b/src/dictionary/components/index.js
@@ -0,0 +1,3 @@
+export { dicReperage } from './reperage';
+
+export { dicSearchBar, dicSurveyUnit, dicOrderFilter } from './common';
diff --git a/src/dictionary/components/reperage/index.js b/src/dictionary/components/reperage/index.js
new file mode 100644
index 0000000..bb9f80c
--- /dev/null
+++ b/src/dictionary/components/reperage/index.js
@@ -0,0 +1 @@
+export { default as dicReperage} from './reperage';
diff --git a/src/dictionary/components/reperage/reperage.js b/src/dictionary/components/reperage/reperage.js
new file mode 100644
index 0000000..6de4823
--- /dev/null
+++ b/src/dictionary/components/reperage/reperage.js
@@ -0,0 +1,8 @@
+const reperage = {
+ buttonPrevious: 'Retour',
+ buttonNext: 'Enregistrer et continuer',
+ buttonSend: 'Envoyer',
+ validationTitle: 'Validation',
+};
+
+export default reperage;
diff --git a/src/dictionary/db/index.js b/src/dictionary/db/index.js
index e38c1e5..cc7fb42 100644
--- a/src/dictionary/db/index.js
+++ b/src/dictionary/db/index.js
@@ -1 +1 @@
-export { default } from './db';
+export { default as dicDb } from './db';
diff --git a/src/dictionary/index.js b/src/dictionary/index.js
index 5a7cffe..a965f2e 100644
--- a/src/dictionary/index.js
+++ b/src/dictionary/index.js
@@ -1,2 +1,2 @@
-// Export default only app D, storybook has not to be linked
-export { default } from './app';
+export * from './components';
+export * from './db';
diff --git a/src/index.js b/src/index.js
index c15ef75..4c010d9 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,17 +1,17 @@
import React from 'react';
import ReactDOM from 'react-dom';
-import { BrowserRouter as Router } from 'react-router-dom';
-import Root from 'components/root';
+import { RecoilRoot } from 'recoil';
+import Initializer from 'components/initializer';
import * as serviceWorkerRegistration from './serviceWorkerRegistration';
import reportWebVitals from './reportWebVitals';
import CssBaseline from '@material-ui/core/CssBaseline';
ReactDOM.render(
-
-
-
-
+
+
+
+
,
document.getElementById('root')
);
diff --git a/src/questionnaire-lunatic/form.json b/src/questionnaire-lunatic/form.json
new file mode 100644
index 0000000..3897e50
--- /dev/null
+++ b/src/questionnaire-lunatic/form.json
@@ -0,0 +1,9915 @@
+{
+ "id": "kbvzifjj",
+ "modele": "v1",
+ "enoCoreVersion": "2.2.11",
+ "lunaticModelVersion": "2.2.3",
+ "generatingDate": "16-09-2021 09:10:12",
+ "missing": false,
+ "pagination": "question",
+ "maxPage": "77",
+ "label": "Enquête annuelle auprès des ménages sur les technologies de l'information et de la communication 2021 (WEB)",
+ "components": [
+ {
+ "id": "kbw7j01m",
+ "componentType": "Sequence",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\"",
+ "declarations": [
+ {
+ "id": "kbw7j01m-kbw7mvvh",
+ "declarationType": "COMMENT",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Débutons ce questionnaire par un aperçu de votre situation personnelle.\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ }
+ },
+
+ {
+ "id": "kbw7j25e",
+ "componentType": "Datepicker",
+ "mandatory": false,
+ "page": "2",
+ "min": "1900-01-01",
+ "max": "2021-12-31",
+ "label": "\"Quelle est votre date de naissance?\"",
+ "conditionFilter": { "value": "true" },
+ "controls": [
+ {
+ "id": "kbw7j25e-CI-0",
+ "criticality": "INFO",
+ "control": "not(cast(AGE,integer) < 15)",
+ "errorMessage": "\"Pour répondre à l’enquête, vous devez avoir plus de 14 ans.\"",
+ "bindingDependencies": ["AGE"]
+ },
+
+ {
+ "id": "kbw7j25e-CI-1",
+ "criticality": "WARN",
+ "control": "not(cast(AGE,integer) > 120)",
+ "errorMessage": "\"Votre âge est supérieur à 120 ans, merci de corriger\"",
+ "bindingDependencies": ["AGE"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["DATENAIS"],
+ "dateFormat": "YYYY-MM-DD",
+ "response": { "name": "DATENAIS" }
+ },
+
+ {
+ "id": "kbw8ookt",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "3",
+ "label": "\"Vous êtes …\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["SEXE"],
+ "options": [
+ { "value": "1", "label": "\"Un homme\"" },
+
+ { "value": "2", "label": "\"Une femme\"" }
+ ],
+ "response": { "name": "SEXE" }
+ },
+
+ {
+ "id": "kbw8yqwv",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "4",
+ "label": "\"Quel est le diplôme le plus élevé que vous ayez obtenu ?\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["DIPLOME"],
+ "options": [
+ { "value": "1", "label": "\" Aucun diplôme\"" },
+
+ {
+ "value": "2",
+ "label": "\" Un CEP (certificat d’études primaires) ou diplôme étranger de même niveau\""
+ },
+
+ {
+ "value": "3",
+ "label": "\" Le brevet des collèges, BEPC, brevet élémentaire ou diplôme étranger de même niveau\""
+ },
+
+ { "value": "4", "label": "\" CAP, BEP ou diplôme de même niveau\"" },
+
+ {
+ "value": "5",
+ "label": "\" Baccalauréat général, technologique ou professionnel ou diplôme étranger de même niveau\""
+ },
+
+ {
+ "value": "6",
+ "label": "\" Diplôme de la santé et du travail social de niveau bac\""
+ },
+
+ { "value": "7", "label": "\" Capacité en droit, DAEU, ESEU\"" },
+
+ {
+ "value": "8",
+ "label": "\" Diplôme de niveau bac + 2 (DEUG, BTS, DUT, diplôme d’infirmier (infirmière) jusqu’à 2011, de kinésithérapeute, d’assistant(e) social(e) etc.)\""
+ },
+
+ {
+ "value": "9",
+ "label": "\" Licence, licence pro., diplôme d’infirmier (infirmière) depuis 2012, maîtrise, master 1\""
+ },
+
+ {
+ "value": "10",
+ "label": "\" Master, DEA, DESS, diplôme de grande école de niveau bac + 5 (ingénieur, commerce…) ou équivalent\""
+ },
+
+ {
+ "value": "11",
+ "label": "\" Doctorat de santé (médecine, pharmacie, dentaire)\""
+ },
+
+ { "value": "12", "label": "\" Doctorat hors santé\"" }
+ ],
+ "response": { "name": "DIPLOME" }
+ },
+
+ {
+ "id": "kbwdhhae",
+ "componentType": "FilterDescription",
+ "page": "4",
+ "filterDescription": false,
+ "label": "\"Si vous avez renseigné un niveau de diplôme CAP, BEP ou supérieur, allez directement à la question 5\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ }
+ },
+
+ {
+ "id": "kbw97gaf",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "5",
+ "label": "\"Quel est votre niveau d’étude ?\"",
+ "conditionFilter": {
+ "value": "(not(cast(DIPLOME,string) > 3))",
+ "bindingDependencies": ["DIPLOME"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["ETUDE"],
+ "options": [
+ { "value": "1", "label": "\" Vous n’avez jamais fait d’études\"" },
+
+ {
+ "value": "2",
+ "label": "\" École primaire (y compris certificat d’études primaires)\""
+ },
+
+ { "value": "3", "label": "\" 6ème à 4ème (collège)\"" },
+
+ { "value": "4", "label": "\" 3ème (collège)\"" },
+
+ {
+ "value": "5",
+ "label": "\" Première, deuxième ou dernière année de CAP-BEP ou d’une formation équivalente\""
+ },
+
+ {
+ "value": "6",
+ "label": "\" Seconde, première ou terminale de lycée\""
+ },
+
+ {
+ "value": "7",
+ "label": "\" Vous avez fait des études mais ne savez pas jusqu’à quel niveau\""
+ }
+ ],
+ "response": { "name": "ETUDE" }
+ },
+
+ {
+ "id": "kbw9jgd2",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "6",
+ "label": "\"Êtes-vous actuellement en couple ?\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["COUPLE"],
+ "options": [
+ {
+ "value": "1",
+ "label": "\" Oui, avec une personne qui vit dans le logement\""
+ },
+
+ {
+ "value": "2",
+ "label": "\" Oui, avec une personne qui ne vit pas dans le logement\""
+ },
+
+ { "value": "3", "label": "\" Non\"" }
+ ],
+ "response": { "name": "COUPLE" }
+ },
+
+ {
+ "id": "kbw9i35f",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "7",
+ "label": "\"Êtes-vous ?\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["ETAMATRI"],
+ "options": [
+ {
+ "value": "1",
+ "label": "\" Célibataire (jamais légalement marié(e))\""
+ },
+
+ {
+ "value": "2",
+ "label": "\" Marié(e) ou remarié(e), y compris séparé(e) mais non divorcé(e)\""
+ },
+
+ { "value": "3", "label": "\" Veuf(ve)\"" },
+
+ { "value": "4", "label": "\" Divorcé(e)\"" }
+ ],
+ "response": { "name": "ETAMATRI" }
+ },
+
+ {
+ "id": "kbwdixht",
+ "componentType": "FilterDescription",
+ "page": "7",
+ "filterDescription": false,
+ "label": "\"Si vous avez déclaré être marié ou remarié, y compris séparé mais non divorcé, allez à la question 8 \"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ }
+ },
+
+ {
+ "id": "kbw9gttr",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "8",
+ "label": "\"Êtes-vous pacsé(e) ?\"",
+ "conditionFilter": {
+ "value": "(not(cast(ETAMATRI,string) = \"2\"))",
+ "bindingDependencies": ["ETAMATRI"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["PACS"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "PACS" }
+ },
+
+ {
+ "id": "kbw9rrbt",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "9",
+ "label": "\"Êtes-vous né(e) ?\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["LNAIS"],
+ "options": [
+ { "value": "1", "label": "\" En France (métropole - DOM-TOM)\"" },
+
+ { "value": "2", "label": "\" À l’étranger\"" }
+ ],
+ "response": { "name": "LNAIS" }
+ },
+
+ {
+ "id": "kbwdact5",
+ "componentType": "FilterDescription",
+ "page": "9",
+ "filterDescription": false,
+ "label": "\"Vous avez déclaré être né en France, passez à la question 9\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ }
+ },
+
+ {
+ "id": "kbwdn99v",
+ "componentType": "FilterDescription",
+ "page": "9",
+ "filterDescription": false,
+ "label": "\"Vous avez déclaré être né à l’étranger, passez à la question 10\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ }
+ },
+
+ {
+ "id": "kbwdjze9",
+ "componentType": "FilterDescription",
+ "page": "9",
+ "filterDescription": false,
+ "label": "\"Si vous ne souhaitez pas répondre à cette question, passez à la question 11\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ }
+ },
+
+ {
+ "id": "kbw9r169",
+ "componentType": "Dropdown",
+ "mandatory": false,
+ "page": "10",
+ "label": "\"Dans quel département ?\"",
+ "declarations": [
+ {
+ "id": "kbw9r169-kbw9za31",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Saisissez le numéro du département et sélectionnez la ligne correspondant au département recherché\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(LNAIS,string) = \"\")) and (not(cast(LNAIS,string) = \"2\"))",
+ "bindingDependencies": ["LNAIS"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["DEPNAIS"],
+ "options": [
+ { "value": "01-AIN", "label": "\"01-AIN\"" },
+
+ { "value": "02-AISNE", "label": "\"02-AISNE\"" },
+
+ { "value": "03-ALLIER", "label": "\"03-ALLIER\"" },
+
+ {
+ "value": "04-ALPES-DE-HAUTE-PROVENCE",
+ "label": "\"04-ALPES-DE-HAUTE-PROVENCE\""
+ },
+
+ { "value": "05-HAUTES-ALPES", "label": "\"05-HAUTES-ALPES\"" },
+
+ { "value": "06-ALPES-MARITIMES", "label": "\"06-ALPES-MARITIMES\"" },
+
+ { "value": "07-ARDÈCHE", "label": "\"07-ARDÈCHE\"" },
+
+ { "value": "08-ARDENNES", "label": "\"08-ARDENNES\"" },
+
+ { "value": "09-ARIÈGE", "label": "\"09-ARIÈGE\"" },
+
+ { "value": "10-AUBE", "label": "\"10-AUBE\"" },
+
+ { "value": "11-AUDE", "label": "\"11-AUDE\"" },
+
+ { "value": "12-AVEYRON", "label": "\"12-AVEYRON\"" },
+
+ { "value": "13-BOUCHES-DU-RHÔNE", "label": "\"13-BOUCHES-DU-RHÔNE\"" },
+
+ { "value": "14-CALVADOS", "label": "\"14-CALVADOS\"" },
+
+ { "value": "15-CANTAL", "label": "\"15-CANTAL\"" },
+
+ { "value": "16-CHARENTE", "label": "\"16-CHARENTE\"" },
+
+ {
+ "value": "17-CHARENTE-MARITIME",
+ "label": "\"17-CHARENTE-MARITIME\""
+ },
+
+ { "value": "18-CHER", "label": "\"18-CHER\"" },
+
+ { "value": "19-CORRÈZE", "label": "\"19-CORRÈZE\"" },
+
+ { "value": "21-CÔTE-D'OR", "label": "\"21-CÔTE-D’OR\"" },
+
+ { "value": "22-CÔTES-D'ARMOR", "label": "\"22-CÔTES-D’ARMOR\"" },
+
+ { "value": "23-CREUSE", "label": "\"23-CREUSE\"" },
+
+ { "value": "24-DORDOGNE", "label": "\"24-DORDOGNE\"" },
+
+ { "value": "25-DOUBS", "label": "\"25-DOUBS\"" },
+
+ { "value": "26-DRÔME", "label": "\"26-DRÔME\"" },
+
+ { "value": "27-EURE", "label": "\"27-EURE\"" },
+
+ { "value": "28-EURE-ET-LOIR", "label": "\"28-EURE-ET-LOIR\"" },
+
+ { "value": "29-FINISTÈRE", "label": "\"29-FINISTÈRE\"" },
+
+ { "value": "2A-CORSE-DU-SUD", "label": "\"2A-CORSE-DU-SUD\"" },
+
+ { "value": "2B-HAUTE-CORSE", "label": "\"2B-HAUTE-CORSE\"" },
+
+ { "value": "30-GARD", "label": "\"30-GARD\"" },
+
+ { "value": "31-HAUTE-GARONNE", "label": "\"31-HAUTE-GARONNE\"" },
+
+ { "value": "32-GERS", "label": "\"32-GERS\"" },
+
+ { "value": "33-GIRONDE", "label": "\"33-GIRONDE\"" },
+
+ { "value": "34-HÉRAULT", "label": "\"34-HÉRAULT\"" },
+
+ { "value": "35-ILLE-ET-VILAINE", "label": "\"35-ILLE-ET-VILAINE\"" },
+
+ { "value": "36-INDRE", "label": "\"36-INDRE\"" },
+
+ { "value": "37-INDRE-ET-LOIRE", "label": "\"37-INDRE-ET-LOIRE\"" },
+
+ { "value": "38-ISÈRE", "label": "\"38-ISÈRE\"" },
+
+ { "value": "39-JURA", "label": "\"39-JURA\"" },
+
+ { "value": "40-LANDES", "label": "\"40-LANDES\"" },
+
+ { "value": "41-LOIR-ET-CHER", "label": "\"41-LOIR-ET-CHER\"" },
+
+ { "value": "42-LOIRE", "label": "\"42-LOIRE\"" },
+
+ { "value": "43-HAUTE-LOIRE", "label": "\"43-HAUTE-LOIRE\"" },
+
+ { "value": "44-LOIRE-ATLANTIQUE", "label": "\"44-LOIRE-ATLANTIQUE\"" },
+
+ { "value": "45-LOIRET", "label": "\"45-LOIRET\"" },
+
+ { "value": "46-LOT", "label": "\"46-LOT\"" },
+
+ { "value": "47-LOT-ET-GARONNE", "label": "\"47-LOT-ET-GARONNE\"" },
+
+ { "value": "48-LOZÈRE", "label": "\"48-LOZÈRE\"" },
+
+ { "value": "49-MAINE-ET-LOIRE", "label": "\"49-MAINE-ET-LOIRE\"" },
+
+ { "value": "50-MANCHE", "label": "\"50-MANCHE\"" },
+
+ { "value": "51-MARNE", "label": "\"51-MARNE\"" },
+
+ { "value": "52-HAUTE-MARNE", "label": "\"52-HAUTE-MARNE\"" },
+
+ { "value": "53-MAYENNE", "label": "\"53-MAYENNE\"" },
+
+ {
+ "value": "54-MEURTHE-ET-MOSELLE",
+ "label": "\"54-MEURTHE-ET-MOSELLE\""
+ },
+
+ { "value": "55-MEUSE", "label": "\"55-MEUSE\"" },
+
+ { "value": "56-MORBIHAN", "label": "\"56-MORBIHAN\"" },
+
+ { "value": "57-MOSELLE", "label": "\"57-MOSELLE\"" },
+
+ { "value": "58-NIÈVRE", "label": "\"58-NIÈVRE\"" },
+
+ { "value": "59-NORD", "label": "\"59-NORD\"" },
+
+ { "value": "60-OISE", "label": "\"60-OISE\"" },
+
+ { "value": "61-ORNE", "label": "\"61-ORNE\"" },
+
+ { "value": "62-PAS-DE-CALAIS", "label": "\"62-PAS-DE-CALAIS\"" },
+
+ { "value": "63-PUY-DE-DÔME", "label": "\"63-PUY-DE-DÔME\"" },
+
+ {
+ "value": "64-PYRÉNÉES-ATLANTIQUES",
+ "label": "\"64-PYRÉNÉES-ATLANTIQUES\""
+ },
+
+ { "value": "65-HAUTES-PYRÉNÉES", "label": "\"65-HAUTES-PYRÉNÉES\"" },
+
+ {
+ "value": "66-PYRÉNÉES-ORIENTALES",
+ "label": "\"66-PYRÉNÉES-ORIENTALES\""
+ },
+
+ { "value": "67-BAS-RHIN", "label": "\"67-BAS-RHIN\"" },
+
+ { "value": "68-HAUT-RHIN", "label": "\"68-HAUT-RHIN\"" },
+
+ { "value": "69-RHÔNE", "label": "\"69-RHÔNE\"" },
+
+ { "value": "70-HAUTE-SAÔNE", "label": "\"70-HAUTE-SAÔNE\"" },
+
+ { "value": "71-SAÔNE-ET-LOIRE", "label": "\"71-SAÔNE-ET-LOIRE\"" },
+
+ { "value": "72-SARTHE", "label": "\"72-SARTHE\"" },
+
+ { "value": "73-SAVOIE", "label": "\"73-SAVOIE\"" },
+
+ { "value": "74-HAUTE-SAVOIE", "label": "\"74-HAUTE-SAVOIE\"" },
+
+ { "value": "75-PARIS", "label": "\"75-PARIS\"" },
+
+ { "value": "76-SEINE-MARITIME", "label": "\"76-SEINE-MARITIME\"" },
+
+ { "value": "77-SEINE-ET-MARNE", "label": "\"77-SEINE-ET-MARNE\"" },
+
+ { "value": "78-YVELINES", "label": "\"78-YVELINES\"" },
+
+ { "value": "79-DEUX-SÈVRES", "label": "\"79-DEUX-SÈVRES\"" },
+
+ { "value": "80-SOMME", "label": "\"80-SOMME\"" },
+
+ { "value": "81-TARN", "label": "\"81-TARN\"" },
+
+ { "value": "82-TARN-ET-GARONNE", "label": "\"82-TARN-ET-GARONNE\"" },
+
+ { "value": "83-VAR", "label": "\"83-VAR\"" },
+
+ { "value": "84-VAUCLUSE", "label": "\"84-VAUCLUSE\"" },
+
+ { "value": "85-VENDÉE", "label": "\"85-VENDÉE\"" },
+
+ { "value": "86-VIENNE", "label": "\"86-VIENNE\"" },
+
+ { "value": "87-HAUTE-VIENNE", "label": "\"87-HAUTE-VIENNE\"" },
+
+ { "value": "88-VOSGES", "label": "\"88-VOSGES\"" },
+
+ { "value": "89-YONNE", "label": "\"89-YONNE\"" },
+
+ {
+ "value": "90-TERRITOIRE DE BELFORT",
+ "label": "\"90-TERRITOIRE DE BELFORT\""
+ },
+
+ { "value": "91-ESSONNE", "label": "\"91-ESSONNE\"" },
+
+ { "value": "92-HAUTS-DE-SEINE", "label": "\"92-HAUTS-DE-SEINE\"" },
+
+ {
+ "value": "93-SEINE-SAINT-DENIS",
+ "label": "\"93-SEINE-SAINT-DENIS\""
+ },
+
+ { "value": "94-VAL-DE-MARNE", "label": "\"94-VAL-DE-MARNE\"" },
+
+ { "value": "95-VAL-D'OISE", "label": "\"95-VAL-D’OISE\"" },
+
+ { "value": "971-GUADELOUPE", "label": "\"971-GUADELOUPE\"" },
+
+ { "value": "972-MARTINIQUE", "label": "\"972-MARTINIQUE\"" },
+
+ { "value": "973-GUYANE", "label": "\"973-GUYANE\"" },
+
+ { "value": "974-LA RÉUNION", "label": "\"974-LA RÉUNION\"" },
+
+ { "value": "976-MAYOTTE", "label": "\"976-MAYOTTE\"" }
+ ],
+ "response": { "name": "DEPNAIS" }
+ },
+
+ {
+ "id": "kbwdn622",
+ "componentType": "FilterDescription",
+ "page": "10",
+ "filterDescription": false,
+ "label": "\"Passez à la question 11\"",
+ "conditionFilter": {
+ "value": "(not(cast(LNAIS,string) = \"\")) and (not(cast(LNAIS,string) = \"2\"))",
+ "bindingDependencies": ["LNAIS"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ }
+ },
+
+ {
+ "id": "kbwanueu",
+ "componentType": "Dropdown",
+ "mandatory": false,
+ "page": "11",
+ "label": "\"Dans quel pays ?\"",
+ "declarations": [
+ {
+ "id": "kbwanueu-kbwaxysc",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Saisissez les premières lettres du pays et sélectionnez la ligne correspondant au pays recherché \""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(LNAIS,string) = \"\")) and (not((cast(LNAIS,string) = \"1\") and not ((cast(LNAIS,string) = \"2\"))))",
+ "bindingDependencies": ["LNAIS"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["PAYSNAIS"],
+ "options": [
+ {
+ "value": "645-ABU DHABI, ABOU DABI",
+ "label": "\"ABU DHABI, ABOU DABI\""
+ },
+
+ { "value": "023-AÇORES", "label": "\"AÇORES\"" },
+
+ { "value": "643-ADJMAN", "label": "\"ADJMAN\"" },
+
+ { "value": "660-AFGHANISTAN", "label": "\"AFGHANISTAN\"" },
+
+ { "value": "388-AFRIQUE DU SUD", "label": "\"AFRIQUE DU SUD\"" },
+
+ { "value": "070-ALBANIE", "label": "\"ALBANIE\"" },
+
+ { "value": "208-ALGERIE", "label": "\"ALGERIE\"" },
+
+ {
+ "value": "004-ALLEMAGNE, RFA, RDA, EX-RFA, EX-RDA, REPUBLIQUE DEMOCRATIQUE ALLEMANDE, REPUBLIQUE FEDERALE D’ALLEMAGNE",
+ "label": "\"ALLEMAGNE, RFA, RDA, EX-RFA, EX-RDA, REPUBLIQUE DEMOCRATIQUE ALLEMANDE, REPUBLIQUE FEDERALE D’ALLEMAGNE\""
+ },
+
+ { "value": "043-ANDORRE", "label": "\"ANDORRE\"" },
+
+ { "value": "014-ANGLETERRE", "label": "\"ANGLETERRE\"" },
+
+ { "value": "330-ANGOLA", "label": "\"ANGOLA\"" },
+
+ { "value": "470-ANGUILLA", "label": "\"ANGUILLA\"" },
+
+ {
+ "value": "459-ANTIGUA ET BARBUDA",
+ "label": "\"ANTIGUA ET BARBUDA\""
+ },
+
+ {
+ "value": "478-ANTILLES NEERLANDAISES",
+ "label": "\"ANTILLES NEERLANDAISES\""
+ },
+
+ { "value": "632-ARABIE SAOUDITE", "label": "\"ARABIE SAOUDITE\"" },
+
+ { "value": "528-ARGENTINE", "label": "\"ARGENTINE\"" },
+
+ { "value": "077-ARMENIE (EX-URSS)", "label": "\"ARMENIE (EX-URSS)\"" },
+
+ { "value": "474-ARUBA", "label": "\"ARUBA\"" },
+
+ { "value": "800-AUSTRALIE", "label": "\"AUSTRALIE\"" },
+
+ { "value": "038-AUTRICHE", "label": "\"AUTRICHE\"" },
+
+ {
+ "value": "078-AZERBAÏDJAN (EX-URSS)",
+ "label": "\"AZERBAÏDJAN (EX-URSS)\""
+ },
+
+ { "value": "453-BAHAMAS", "label": "\"BAHAMAS\"" },
+
+ { "value": "640-BAHREIN", "label": "\"BAHREIN\"" },
+
+ { "value": "666-BANGLADESH", "label": "\"BANGLADESH\"" },
+
+ { "value": "469-BARBADE", "label": "\"BARBADE\"" },
+
+ { "value": "002-BELGIQUE", "label": "\"BELGIQUE\"" },
+
+ { "value": "421-BELIZE", "label": "\"BELIZE\"" },
+
+ { "value": "284-BENIN", "label": "\"BENIN\"" },
+
+ { "value": "413-BERMUDES", "label": "\"BERMUDES\"" },
+
+ { "value": "675-BHOUTAN, BHUTAN", "label": "\"BHOUTAN, BHUTAN\"" },
+
+ {
+ "value": "073-BIELORUSSIE, BELARUS (EX-URSS)",
+ "label": "\"BIELORUSSIE, BELARUS (EX-URSS)\""
+ },
+
+ { "value": "516-BOLIVIE", "label": "\"BOLIVIE\"" },
+
+ { "value": "479-BONAIRE", "label": "\"BONAIRE\"" },
+
+ {
+ "value": "093-BOSNIE-HERZEGOVINE (EX-YOUGOSLAVIE)",
+ "label": "\"BOSNIE-HERZEGOVINE (EX-YOUGOSLAVIE)\""
+ },
+
+ { "value": "391-BOTSWANA", "label": "\"BOTSWANA\"" },
+
+ { "value": "508-BRESIL", "label": "\"BRESIL\"" },
+
+ { "value": "047-BRETAGNE", "label": "\"BRETAGNE\"" },
+
+ { "value": "703-BRUNEI", "label": "\"BRUNEI\"" },
+
+ { "value": "068-BULGARIE", "label": "\"BULGARIE\"" },
+
+ { "value": "236-BURKINA FASO", "label": "\"BURKINA FASO\"" },
+
+ { "value": "328-BURUNDI", "label": "\"BURUNDI\"" },
+
+ { "value": "331-CABINDA", "label": "\"CABINDA\"" },
+
+ { "value": "696-CAMBODGE", "label": "\"CAMBODGE\"" },
+
+ { "value": "302-CAMEROUN", "label": "\"CAMEROUN\"" },
+
+ { "value": "404-CANADA", "label": "\"CANADA\"" },
+
+ { "value": "021-CANARIES", "label": "\"CANARIES\"" },
+
+ { "value": "247-CAP-VERT", "label": "\"CAP-VERT\"" },
+
+ { "value": "022-CEUTA ET MELILLA", "label": "\"CEUTA ET MELILLA\"" },
+
+ { "value": "648-CHARDJA", "label": "\"CHARDJA\"" },
+
+ { "value": "512-CHILI", "label": "\"CHILI\"" },
+
+ { "value": "600-CHYPRE", "label": "\"CHYPRE\"" },
+
+ { "value": "480-COLOMBIE", "label": "\"COLOMBIE\"" },
+
+ { "value": "375-COMORES", "label": "\"COMORES\"" },
+
+ { "value": "031-CORSE", "label": "\"CORSE\"" },
+
+ { "value": "436-COSTA RICA", "label": "\"COSTA RICA\"" },
+
+ { "value": "272-COTE-D'IVOIRE", "label": "\"COTE-D’IVOIRE\"" },
+
+ { "value": "034-CRETE", "label": "\"CRETE\"" },
+
+ {
+ "value": "092-CROATIE (EX-YOUGOSLAVIE)",
+ "label": "\"CROATIE (EX-YOUGOSLAVIE)\""
+ },
+
+ { "value": "448-CUBA", "label": "\"CUBA\"" },
+
+ { "value": "477-CURAÇAO", "label": "\"CURAÇAO\"" },
+
+ { "value": "008-DANEMARK", "label": "\"DANEMARK\"" },
+
+ { "value": "338-DJIBOUTI", "label": "\"DJIBOUTI\"" },
+
+ { "value": "460-DOMINIQUE", "label": "\"DOMINIQUE\"" },
+
+ { "value": "646-DUBAÏ, DOUBAÏ", "label": "\"DUBAÏ, DOUBAÏ\"" },
+
+ { "value": "015-ECOSSE", "label": "\"ECOSSE\"" },
+
+ { "value": "220-EGYPTE", "label": "\"EGYPTE\"" },
+
+ { "value": "428-EL SALVADOR", "label": "\"EL SALVADOR\"" },
+
+ {
+ "value": "647-EMIRATS ARABES UNIS",
+ "label": "\"EMIRATS ARABES UNIS\""
+ },
+
+ { "value": "500-EQUATEUR", "label": "\"EQUATEUR\"" },
+
+ { "value": "335-ERYTHREE", "label": "\"ERYTHREE\"" },
+
+ { "value": "011-ESPAGNE", "label": "\"ESPAGNE\"" },
+
+ { "value": "053-ESTONIE (EX-URSS)", "label": "\"ESTONIE (EX-URSS)\"" },
+
+ {
+ "value": "400-ETATS-UNIS D'AMERIQUE, USA, ALASKA, HAWAII",
+ "label": "\"ETATS-UNIS D’AMERIQUE, USA, ALASKA, HAWAII\""
+ },
+
+ { "value": "334-ETHIOPIE", "label": "\"ETHIOPIE\"" },
+
+ { "value": "815-FIDJI", "label": "\"FIDJI\"" },
+
+ { "value": "032-FINLANDE", "label": "\"FINLANDE\"" },
+
+ { "value": "001-FRANCE", "label": "\"FRANCE\"" },
+
+ {
+ "value": "641-FUDJAYRA, FOUDJAÏRAH",
+ "label": "\"FUDJAYRA, FOUDJAÏRAH\""
+ },
+
+ { "value": "314-GABON", "label": "\"GABON\"" },
+
+ { "value": "252-GAMBIE", "label": "\"GAMBIE\"" },
+
+ { "value": "076-GEORGIE (EX-URSS)", "label": "\"GEORGIE (EX-URSS)\"" },
+
+ { "value": "530-GEORGIE DU SUD", "label": "\"GEORGIE DU SUD\"" },
+
+ { "value": "276-GHANA", "label": "\"GHANA\"" },
+
+ { "value": "044-GIBRALTAR", "label": "\"GIBRALTAR\"" },
+
+ { "value": "013-GRANDE-BRETAGNE", "label": "\"GRANDE-BRETAGNE\"" },
+
+ { "value": "009-GRECE", "label": "\"GRECE\"" },
+
+ { "value": "473-GRENADE", "label": "\"GRENADE\"" },
+
+ { "value": "406-GROENLAND", "label": "\"GROENLAND\"" },
+
+ { "value": "458-GUADELOUPE", "label": "\"GUADELOUPE\"" },
+
+ { "value": "818-GUAM", "label": "\"GUAM\"" },
+
+ { "value": "416-GUATEMALA", "label": "\"GUATEMALA\"" },
+
+ { "value": "901-GUERNESEY", "label": "\"GUERNESEY\"" },
+
+ {
+ "value": "310-GUINEE EQUATORIALE",
+ "label": "\"GUINEE EQUATORIALE\""
+ },
+
+ {
+ "value": "257-GUINEE-BISSAU, GUINEE-BISSAO",
+ "label": "\"GUINEE-BISSAU, GUINEE-BISSAO\""
+ },
+
+ { "value": "488-GUYANA", "label": "\"GUYANA\"" },
+
+ { "value": "496-GUYANE FRANÇAISE", "label": "\"GUYANE FRANÇAISE\"" },
+
+ { "value": "452-HAITI", "label": "\"HAITI\"" },
+
+ { "value": "424-HONDURAS", "label": "\"HONDURAS\"" },
+
+ { "value": "740-HONG-KONG", "label": "\"HONG-KONG\"" },
+
+ { "value": "064-HONGRIE", "label": "\"HONGRIE\"" },
+
+ { "value": "026-ILE BOUVET", "label": "\"ILE BOUVET\"" },
+
+ {
+ "value": "356-ILE DE L'ASCENSION",
+ "label": "\"ILE DE L’ASCENSION\""
+ },
+
+ { "value": "018-ILE DE MAN", "label": "\"ILE DE MAN\"" },
+
+ {
+ "value": "802-ILE HEARD, ILES MACDONALD",
+ "label": "\"ILE HEARD, ILES MACDONALD\""
+ },
+
+ { "value": "373-ILE MAURICE", "label": "\"ILE MAURICE\"" },
+
+ { "value": "813-ILE PITCAIRN", "label": "\"ILE PITCAIRN\"" },
+
+ {
+ "value": "019-ILES ANGLO-NORMANDES",
+ "label": "\"ILES ANGLO-NORMANDES\""
+ },
+
+ { "value": "463-ILES CAYMAN", "label": "\"ILES CAYMAN\"" },
+
+ { "value": "359-ILES CHAGOS", "label": "\"ILES CHAGOS\"" },
+
+ { "value": "809-ILES CHRISTMAS", "label": "\"ILES CHRISTMAS\"" },
+
+ {
+ "value": "810-ILES COCOS, ILES KEELING",
+ "label": "\"ILES COCOS, ILES KEELING\""
+ },
+
+ { "value": "805-ILES COOK", "label": "\"ILES COOK\"" },
+
+ {
+ "value": "529-ILES FALKLAND, ILES MALOUINES",
+ "label": "\"ILES FALKLAND, ILES MALOUINES\""
+ },
+
+ { "value": "041-ILES FEROE", "label": "\"ILES FEROE\"" },
+
+ {
+ "value": "812-ILES KIRIBATI, ILE GILBERT",
+ "label": "\"ILES KIRIBATI, ILE GILBERT\""
+ },
+
+ { "value": "820-ILES MARIANNES", "label": "\"ILES MARIANNES\"" },
+
+ { "value": "824-ILES MARSHALL", "label": "\"ILES MARSHALL\"" },
+
+ { "value": "808-ILES NORFOLK", "label": "\"ILES NORFOLK\"" },
+
+ { "value": "806-ILES SALOMON", "label": "\"ILES SALOMON\"" },
+
+ {
+ "value": "531-ILES SANDWICH DU SUD",
+ "label": "\"ILES SANDWICH DU SUD\""
+ },
+
+ { "value": "807-ILES TOKELAU", "label": "\"ILES TOKELAU\"" },
+
+ {
+ "value": "357-ILES TRISTAN DE CUNHA",
+ "label": "\"ILES TRISTAN DE CUNHA\""
+ },
+
+ {
+ "value": "454-ILES TURQUES ET CAÏQUES, ILES TURKS ET CAÏCOS",
+ "label": "\"ILES TURQUES ET CAÏQUES, ILES TURKS ET CAÏCOS\""
+ },
+
+ {
+ "value": "457-ILES VIERGES AMERICAINES",
+ "label": "\"ILES VIERGES AMERICAINES\""
+ },
+
+ {
+ "value": "461-ILES VIERGES BRITANNIQUES",
+ "label": "\"ILES VIERGES BRITANNIQUES\""
+ },
+
+ { "value": "664-INDE", "label": "\"INDE\"" },
+
+ { "value": "700-INDONESIE", "label": "\"INDONESIE\"" },
+
+ { "value": "616-IRAN", "label": "\"IRAN\"" },
+
+ { "value": "612-IRAQ, IRAK", "label": "\"IRAQ, IRAK\"" },
+
+ {
+ "value": "017-IRLANDE DU NORD (ULSTER)",
+ "label": "\"IRLANDE DU NORD (ULSTER)\""
+ },
+
+ { "value": "007-IRLANDE, EIRE", "label": "\"IRLANDE, EIRE\"" },
+
+ { "value": "024-ISLANDE", "label": "\"ISLANDE\"" },
+
+ { "value": "624-ISRAËL", "label": "\"ISRAËL\"" },
+
+ { "value": "005-ITALIE", "label": "\"ITALIE\"" },
+
+ { "value": "464-JAMAÏQUE", "label": "\"JAMAÏQUE\"" },
+
+ { "value": "732-JAPON", "label": "\"JAPON\"" },
+
+ { "value": "902-JERSEY", "label": "\"JERSEY\"" },
+
+ { "value": "628-JORDANIE", "label": "\"JORDANIE\"" },
+
+ { "value": "210-KABYLIE", "label": "\"KABYLIE\"" },
+
+ { "value": "830-KANAKIE", "label": "\"KANAKIE\"" },
+
+ {
+ "value": "079-KAZAKHSTAN (EX-URSS)",
+ "label": "\"KAZAKHSTAN (EX-URSS)\""
+ },
+
+ { "value": "346-KENYA", "label": "\"KENYA\"" },
+
+ {
+ "value": "083-KIRGHIZISTAN, KIRGHIZIE (EX-URSS)",
+ "label": "\"KIRGHIZISTAN, KIRGHIZIE (EX-URSS)\""
+ },
+
+ { "value": "090-KOSOVO", "label": "\"KOSOVO\"" },
+
+ { "value": "636-KOWEÏT", "label": "\"KOWEÏT\"" },
+
+ { "value": "050-KURDISTAN (IRAQ)", "label": "\"KURDISTAN (IRAQ)\"" },
+
+ {
+ "value": "051-KURDISTAN (TURQUIE)",
+ "label": "\"KURDISTAN (TURQUIE)\""
+ },
+
+ { "value": "684-LAOS", "label": "\"LAOS\"" },
+
+ { "value": "395-LESOTHO", "label": "\"LESOTHO\"" },
+
+ {
+ "value": "054-LETTONIE (EX-URSS)",
+ "label": "\"LETTONIE (EX-URSS)\""
+ },
+
+ { "value": "604-LIBAN", "label": "\"LIBAN\"" },
+
+ { "value": "268-LIBERIA", "label": "\"LIBERIA\"" },
+
+ { "value": "216-LIBYE", "label": "\"LIBYE\"" },
+
+ { "value": "020-LIECHTENSTEIN", "label": "\"LIECHTENSTEIN\"" },
+
+ {
+ "value": "055-LITUANIE (EX-URSS)",
+ "label": "\"LITUANIE (EX-URSS)\""
+ },
+
+ { "value": "012-LUXEMBOURG", "label": "\"LUXEMBOURG\"" },
+
+ { "value": "743-MACAO", "label": "\"MACAO\"" },
+
+ {
+ "value": "096-MACEDOINE, REPUBLIQUE DE MACEDOINE DU NORD (EX-YOUGOSLAVIE)",
+ "label": "\"MACEDOINE, REPUBLIQUE DE MACEDOINE DU NORD (EX-YOUGOSLAVIE)\""
+ },
+
+ { "value": "370-MADAGASCAR", "label": "\"MADAGASCAR\"" },
+
+ { "value": "025-MADERE", "label": "\"MADERE\"" },
+
+ { "value": "701-MALAISIE", "label": "\"MALAISIE\"" },
+
+ { "value": "386-MALAWI", "label": "\"MALAWI\"" },
+
+ { "value": "667-MALDIVES", "label": "\"MALDIVES\"" },
+
+ { "value": "232-MALI", "label": "\"MALI\"" },
+
+ { "value": "046-MALTE", "label": "\"MALTE\"" },
+
+ { "value": "204-MAROC", "label": "\"MAROC\"" },
+
+ { "value": "462-MARTINIQUE", "label": "\"MARTINIQUE\"" },
+
+ { "value": "228-MAURITANIE", "label": "\"MAURITANIE\"" },
+
+ { "value": "377-MAYOTTE", "label": "\"MAYOTTE\"" },
+
+ { "value": "412-MEXIQUE", "label": "\"MEXIQUE\"" },
+
+ { "value": "823-MICRONESIE", "label": "\"MICRONESIE\"" },
+
+ {
+ "value": "074-MOLDAVIE (EX-URSS)",
+ "label": "\"MOLDAVIE (EX-URSS)\""
+ },
+
+ { "value": "040-MONACO", "label": "\"MONACO\"" },
+
+ { "value": "716-MONGOLIE", "label": "\"MONGOLIE\"" },
+
+ { "value": "097-MONTENEGRO", "label": "\"MONTENEGRO\"" },
+
+ { "value": "471-MONTSERRAT", "label": "\"MONTSERRAT\"" },
+
+ { "value": "366-MOZAMBIQUE", "label": "\"MOZAMBIQUE\"" },
+
+ { "value": "676-MYANMAR, BIRMANIE", "label": "\"MYANMAR, BIRMANIE\"" },
+
+ { "value": "389-NAMIBIE", "label": "\"NAMIBIE\"" },
+
+ { "value": "803-NAURU", "label": "\"NAURU\"" },
+
+ { "value": "672-NEPAL", "label": "\"NEPAL\"" },
+
+ { "value": "432-NICARAGUA", "label": "\"NICARAGUA\"" },
+
+ { "value": "240-NIGER", "label": "\"NIGER\"" },
+
+ { "value": "288-NIGERIA", "label": "\"NIGERIA\"" },
+
+ { "value": "814-NIUE, SAVAGE", "label": "\"NIUE, SAVAGE\"" },
+
+ { "value": "028-NORVEGE", "label": "\"NORVEGE\"" },
+
+ {
+ "value": "827-NOUVELLE-CALEDONIE",
+ "label": "\"NOUVELLE-CALEDONIE\""
+ },
+
+ { "value": "804-NOUVELLE-ZELANDE", "label": "\"NOUVELLE-ZELANDE\"" },
+
+ { "value": "649-OMAN", "label": "\"OMAN\"" },
+
+ { "value": "350-OUGANDA", "label": "\"OUGANDA\"" },
+
+ {
+ "value": "081-OUZBEKISTAN, UZBEKISTAN (EX-URSS)",
+ "label": "\"OUZBEKISTAN, UZBEKISTAN (EX-URSS)\""
+ },
+
+ { "value": "662-PAKISTAN", "label": "\"PAKISTAN\"" },
+
+ { "value": "625-PALESTINE", "label": "\"PALESTINE\"" },
+
+ { "value": "442-PANAMA", "label": "\"PANAMA\"" },
+
+ {
+ "value": "801-PAPOUASIE-NOUVELLE-GUINEE",
+ "label": "\"PAPOUASIE-NOUVELLE-GUINEE\""
+ },
+
+ { "value": "520-PARAGUAY", "label": "\"PARAGUAY\"" },
+
+ {
+ "value": "039-PAYS BASQUE (ESPAGNE)",
+ "label": "\"PAYS BASQUE (ESPAGNE)\""
+ },
+
+ {
+ "value": "033-PAYS BASQUE (FRANCE)",
+ "label": "\"PAYS BASQUE (FRANCE)\""
+ },
+
+ {
+ "value": "003-PAYS-BAS, HOLLANDE",
+ "label": "\"PAYS-BAS, HOLLANDE\""
+ },
+
+ { "value": "016-PAYS-DE-GALLES", "label": "\"PAYS-DE-GALLES\"" },
+
+ { "value": "504-PEROU", "label": "\"PEROU\"" },
+
+ { "value": "708-PHILIPPINES", "label": "\"PHILIPPINES\"" },
+
+ { "value": "060-POLOGNE", "label": "\"POLOGNE\"" },
+
+ {
+ "value": "826-POLYNESIE FRANÇAISE",
+ "label": "\"POLYNESIE FRANÇAISE\""
+ },
+
+ { "value": "449-PORTO RICO", "label": "\"PORTO RICO\"" },
+
+ { "value": "010-PORTUGAL", "label": "\"PORTUGAL\"" },
+
+ { "value": "644-QATAR", "label": "\"QATAR\"" },
+
+ { "value": "405-QUEBEC", "label": "\"QUEBEC\"" },
+
+ {
+ "value": "650-RAS AL-KHAYMA, RAS AL KHAÏMAH",
+ "label": "\"RAS AL-KHAYMA, RAS AL KHAÏMAH\""
+ },
+
+ {
+ "value": "306-REPUBLIQUE CENTRAFRICAINE, RCA",
+ "label": "\"REPUBLIQUE CENTRAFRICAINE, RCA\""
+ },
+
+ {
+ "value": "728-REPUBLIQUE DE COREE, COREE DU SUD",
+ "label": "\"REPUBLIQUE DE COREE, COREE DU SUD\""
+ },
+
+ {
+ "value": "260-REPUBLIQUE DE GUINEE, GUINEE",
+ "label": "\"REPUBLIQUE DE GUINEE, GUINEE\""
+ },
+
+ {
+ "value": "042-REPUBLIQUE DE SAINT-MARIN",
+ "label": "\"REPUBLIQUE DE SAINT-MARIN\""
+ },
+
+ {
+ "value": "322-REPUBLIQUE DEMOCRATIQUE DU CONGO, ZAÏRE, EX-ZAÏRE",
+ "label": "\"REPUBLIQUE DEMOCRATIQUE DU CONGO, ZAÏRE, EX-ZAÏRE\""
+ },
+
+ {
+ "value": "829-REPUBLIQUE DES ILES PALAOS, PALAU, BELAU",
+ "label": "\"REPUBLIQUE DES ILES PALAOS, PALAU, BELAU\""
+ },
+
+ {
+ "value": "456-REPUBLIQUE DOMINICAINE",
+ "label": "\"REPUBLIQUE DOMINICAINE\""
+ },
+
+ {
+ "value": "318-REPUBLIQUE DU CONGO, CONGO, CONGO-BRAZZAVILLE",
+ "label": "\"REPUBLIQUE DU CONGO, CONGO, CONGO-BRAZZAVILLE\""
+ },
+
+ {
+ "value": "720-REPUBLIQUE POPULAIRE DE CHINE, CHINE",
+ "label": "\"REPUBLIQUE POPULAIRE DE CHINE, CHINE\""
+ },
+
+ {
+ "value": "724-REPUBLIQUE POPULAIRE DEMOCRATIQUE DE COREE, COREE DU NORD",
+ "label": "\"REPUBLIQUE POPULAIRE DEMOCRATIQUE DE COREE, COREE DU NORD\""
+ },
+
+ {
+ "value": "061-REPUBLIQUE TCHEQUE (EX-TCHECOSLOVAQUIE)",
+ "label": "\"REPUBLIQUE TCHEQUE (EX-TCHECOSLOVAQUIE)\""
+ },
+
+ { "value": "372-REUNION", "label": "\"REUNION\"" },
+
+ { "value": "066-ROUMANIE", "label": "\"ROUMANIE\"" },
+
+ { "value": "006-ROYAUME-UNI", "label": "\"ROYAUME-UNI\"" },
+
+ {
+ "value": "075-RUSSIE (EX-URSS), TCHETCHENIE, DAGUESTAN",
+ "label": "\"RUSSIE (EX-URSS), TCHETCHENIE, DAGUESTAN\""
+ },
+
+ { "value": "324-RWANDA, RUANDA", "label": "\"RWANDA, RUANDA\"" },
+
+ { "value": "476-SABA", "label": "\"SABA\"" },
+
+ { "value": "380-SAHARA OCCIDENTAL", "label": "\"SAHARA OCCIDENTAL\"" },
+
+ { "value": "903-SAINT-BARTHELEMY", "label": "\"SAINT-BARTHELEMY\"" },
+
+ { "value": "475-SAINT-EUSTACHE", "label": "\"SAINT-EUSTACHE\"" },
+
+ {
+ "value": "451-SAINT-KITTS ET NEVIS",
+ "label": "\"SAINT-KITTS ET NEVIS\""
+ },
+
+ { "value": "904-SAINT-MARTIN", "label": "\"SAINT-MARTIN\"" },
+
+ {
+ "value": "831-SAINT-PIERRE ET MIQUELON",
+ "label": "\"SAINT-PIERRE ET MIQUELON\""
+ },
+
+ {
+ "value": "467-SAINT-VINCENT-ET-LES-GRENADINES",
+ "label": "\"SAINT-VINCENT-ET-LES-GRENADINES\""
+ },
+
+ { "value": "358-SAINTE-HELENE", "label": "\"SAINTE-HELENE\"" },
+
+ { "value": "465-SAINTE-LUCIE", "label": "\"SAINTE-LUCIE\"" },
+
+ {
+ "value": "821-SAMOA AMERICAINES, SAMOA ORIENTALES",
+ "label": "\"SAMOA AMERICAINES, SAMOA ORIENTALES\""
+ },
+
+ {
+ "value": "819-SAMOA OCCIDENTALES",
+ "label": "\"SAMOA OCCIDENTALES\""
+ },
+
+ {
+ "value": "311-SAO TOME-ET-PRINCIPE",
+ "label": "\"SAO TOME-ET-PRINCIPE\""
+ },
+
+ { "value": "035-SARDAIGNE", "label": "\"SARDAIGNE\"" },
+
+ { "value": "248-SENEGAL", "label": "\"SENEGAL\"" },
+
+ { "value": "094-SERBIE", "label": "\"SERBIE\"" },
+
+ { "value": "355-SEYCHELLES", "label": "\"SEYCHELLES\"" },
+
+ { "value": "037-SICILE", "label": "\"SICILE\"" },
+
+ { "value": "264-SIERRA LEONE", "label": "\"SIERRA LEONE\"" },
+
+ { "value": "706-SINGAPOUR", "label": "\"SINGAPOUR\"" },
+
+ {
+ "value": "466-SINT MAARTEN, SAINT-MARTIN (NEERLANDAISE)",
+ "label": "\"SINT MAARTEN, SAINT-MARTIN (NEERLANDAISE)\""
+ },
+
+ {
+ "value": "063-SLOVAQUIE (EX-TCHECOSLOVAQUIE)",
+ "label": "\"SLOVAQUIE (EX-TCHECOSLOVAQUIE)\""
+ },
+
+ {
+ "value": "091-SLOVENIE (EX-YOUGOSLAVIE)",
+ "label": "\"SLOVENIE (EX-YOUGOSLAVIE)\""
+ },
+
+ { "value": "342-SOMALIE", "label": "\"SOMALIE\"" },
+
+ { "value": "224-SOUDAN", "label": "\"SOUDAN\"" },
+
+ { "value": "226-SOUDAN DU SUD", "label": "\"SOUDAN DU SUD\"" },
+
+ { "value": "669-SRI LANKA, CEYLAN", "label": "\"SRI LANKA, CEYLAN\"" },
+
+ { "value": "030-SUEDE", "label": "\"SUEDE\"" },
+
+ { "value": "036-SUISSE", "label": "\"SUISSE\"" },
+
+ { "value": "492-SURINAM", "label": "\"SURINAM\"" },
+
+ {
+ "value": "029-SVALBARD, SPITSBERG, ILE JAN MAYEN",
+ "label": "\"SVALBARD, SPITSBERG, ILE JAN MAYEN\""
+ },
+
+ {
+ "value": "393-SWAZILAND, ESWATINI",
+ "label": "\"SWAZILAND, ESWATINI\""
+ },
+
+ { "value": "608-SYRIE", "label": "\"SYRIE\"" },
+
+ {
+ "value": "082-TADJIKISTAN (EX-URSS)",
+ "label": "\"TADJIKISTAN (EX-URSS)\""
+ },
+
+ { "value": "736-TAIWAN, FORMOSE", "label": "\"TAIWAN, FORMOSE\"" },
+
+ { "value": "352-TANZANIE", "label": "\"TANZANIE\"" },
+
+ { "value": "244-TCHAD", "label": "\"TCHAD\"" },
+
+ {
+ "value": "905-TERRES AUSTRALES FRANÇAISES",
+ "label": "\"TERRES AUSTRALES FRANÇAISES\""
+ },
+
+ {
+ "value": "532-TERRITOIRE ANTARCTIQUE BRITANNIQUE",
+ "label": "\"TERRITOIRE ANTARCTIQUE BRITANNIQUE\""
+ },
+
+ { "value": "680-THAILANDE", "label": "\"THAILANDE\"" },
+
+ { "value": "721-TIBET", "label": "\"TIBET\"" },
+
+ { "value": "702-TIMOR ORIENTAL", "label": "\"TIMOR ORIENTAL\"" },
+
+ { "value": "280-TOGO", "label": "\"TOGO\"" },
+
+ { "value": "817-TONGA", "label": "\"TONGA\"" },
+
+ { "value": "086-TRANSNISTRIE", "label": "\"TRANSNISTRIE\"" },
+
+ {
+ "value": "472-TRINIDAD ET TOBAGO, TRINITE-ET-TOBAGO",
+ "label": "\"TRINIDAD ET TOBAGO, TRINITE-ET-TOBAGO\""
+ },
+
+ { "value": "212-TUNISIE", "label": "\"TUNISIE\"" },
+
+ {
+ "value": "080-TURKMENISTAN (EX-URSS)",
+ "label": "\"TURKMENISTAN (EX-URSS)\""
+ },
+
+ { "value": "052-TURQUIE", "label": "\"TURQUIE\"" },
+
+ { "value": "822-TUVALU", "label": "\"TUVALU\"" },
+
+ { "value": "072-UKRAINE (EX-URSS)", "label": "\"UKRAINE (EX-URSS)\"" },
+
+ {
+ "value": "642-UMM AL QAYWAYN, OUM AL QAÏWAÏN",
+ "label": "\"UMM AL QAYWAYN, OUM AL QAÏWAÏN\""
+ },
+
+ { "value": "524-URUGUAY", "label": "\"URUGUAY\"" },
+
+ { "value": "816-VANUATU", "label": "\"VANUATU\"" },
+
+ { "value": "045-VATICAN", "label": "\"VATICAN\"" },
+
+ { "value": "484-VENEZUELA", "label": "\"VENEZUELA\"" },
+
+ {
+ "value": "690-VIET NAM, VIET NAM DU NORD, VIET NAM DU SUD",
+ "label": "\"VIET NAM, VIET NAM DU NORD, VIET NAM DU SUD\""
+ },
+
+ { "value": "811-WALLIS ET FUTUNA", "label": "\"WALLIS ET FUTUNA\"" },
+
+ { "value": "653-YEMEN", "label": "\"YEMEN\"" },
+
+ { "value": "378-ZAMBIE", "label": "\"ZAMBIE\"" },
+
+ { "value": "382-ZIMBABWE", "label": "\"ZIMBABWE\"" }
+ ],
+ "response": { "name": "PAYSNAIS" }
+ },
+
+ {
+ "id": "kbwafrus",
+ "componentType": "CheckboxGroup",
+ "page": "12",
+ "label": "\"Êtes-vous …\"",
+ "declarations": [
+ {
+ "id": "kbwafrus-kbwataew",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" (plusieurs réponses possibles : par exemple la première réponse et la troisième) \""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "controls": [
+ {
+ "id": "kbwafrus-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(NATIO1N4,integer) = '1' and (cast(NATIO1N1,integer) = '1' or cast(NATIO1N2,integer) = '1' or cast(NATIO1N3,integer) = '1'))",
+ "errorMessage": "\"Votre réponse - « Apatride » - est incompatible avec les autres réponses\"",
+ "bindingDependencies": [
+ "NATIO1N4",
+ "NATIO1N1",
+ "NATIO1N2",
+ "NATIO1N3"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["NATIO1N1", "NATIO1N2", "NATIO1N3", "NATIO1N4"],
+ "responses": [
+ {
+ "id": "kbwafrus-QOP-khq581ud",
+ "label": "\" Français(e) de naissance, y compris par réintégration\"",
+ "response": { "name": "NATIO1N1" }
+ },
+
+ {
+ "id": "kbwafrus-QOP-khq5b343",
+ "label": "\" Français(e) par naturalisation, mariage, déclaration ou option à votre majorité\"",
+ "response": { "name": "NATIO1N2" }
+ },
+
+ {
+ "id": "kbwafrus-QOP-khq53vcl",
+ "label": "\" Étranger(ère)\"",
+ "response": { "name": "NATIO1N3" }
+ },
+
+ {
+ "id": "kbwafrus-QOP-khq5786k",
+ "label": "\" Apatride\"",
+ "response": { "name": "NATIO1N4" }
+ }
+ ]
+ },
+
+ {
+ "id": "kbwdnlwu",
+ "componentType": "FilterDescription",
+ "page": "12",
+ "filterDescription": false,
+ "label": "\"Vous avez déclaré ne pas être de nationalité étrangère, passez à la question 13\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ }
+ },
+
+ {
+ "id": "kbwanqdo",
+ "componentType": "Dropdown",
+ "mandatory": false,
+ "page": "13",
+ "label": "\"Quelle est votre \" || cast(cast(plusieurnatio,string),string) || \" nationalité ? \"",
+ "declarations": [
+ {
+ "id": "kbwanqdo-kjldkcju",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Saisissez les premières lettres de la nationalité et sélectionnez la ligne correspondant à la nationalité recherchée\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(NATIO1N3,integer) <> 1 ))",
+ "bindingDependencies": ["NATIO1N3"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["plusieurnatio", "NATIO2N"],
+ "options": [
+ { "value": "660-AFGHANE", "label": "\"AFGHANE\"" },
+
+ { "value": "070-ALBANAISE", "label": "\"ALBANAISE\"" },
+
+ { "value": "208-ALGERIENNE", "label": "\"ALGERIENNE\"" },
+
+ { "value": "004-ALLEMANDE", "label": "\"ALLEMANDE\"" },
+
+ {
+ "value": "400-AMERICAINE, HAWAIIENNE",
+ "label": "\"AMERICAINE, HAWAIIENNE\""
+ },
+
+ { "value": "043-ANDORRANE", "label": "\"ANDORRANE\"" },
+
+ { "value": "014-ANGLAISE", "label": "\"ANGLAISE\"" },
+
+ { "value": "330-ANGOLAISE", "label": "\"ANGOLAISE\"" },
+
+ {
+ "value": "459-ANTIGUAISE-ET-BARBUDIENNE, ANTIGUAYENNE",
+ "label": "\"ANTIGUAISE-ET-BARBUDIENNE, ANTIGUAYENNE\""
+ },
+
+ {
+ "value": "900-APATRIDE (SANS NATIONALITE)",
+ "label": "\"APATRIDE (SANS NATIONALITE)\""
+ },
+
+ { "value": "528-ARGENTINE", "label": "\"ARGENTINE\"" },
+
+ { "value": "077-ARMENIENNE", "label": "\"ARMENIENNE\"" },
+
+ {
+ "value": "474-ARUBAISE, ARUBAINE",
+ "label": "\"ARUBAISE, ARUBAINE\""
+ },
+
+ { "value": "800-AUSTRALIENNE", "label": "\"AUSTRALIENNE\"" },
+
+ { "value": "038-AUTRICHIENNE", "label": "\"AUTRICHIENNE\"" },
+
+ { "value": "078-AZERBAÏDJANAISE", "label": "\"AZERBAÏDJANAISE\"" },
+
+ { "value": "453-BAHAMEENNE", "label": "\"BAHAMEENNE\"" },
+
+ { "value": "640-BAHREINIENNE", "label": "\"BAHREINIENNE\"" },
+
+ { "value": "666-BANGLADAISE", "label": "\"BANGLADAISE\"" },
+
+ { "value": "469-BARBADIENNE", "label": "\"BARBADIENNE\"" },
+
+ {
+ "value": "903-BARTHELOMEENNE, BARTHELEMOISE",
+ "label": "\"BARTHELOMEENNE, BARTHELEMOISE\""
+ },
+
+ { "value": "039-BASQUE (ESPAGNE)", "label": "\"BASQUE (ESPAGNE)\"" },
+
+ { "value": "033-BASQUE (FRANCE)", "label": "\"BASQUE (FRANCE)\"" },
+
+ { "value": "002-BELGE", "label": "\"BELGE\"" },
+
+ { "value": "421-BELIZIENNE", "label": "\"BELIZIENNE\"" },
+
+ { "value": "284-BENINOISE", "label": "\"BENINOISE\"" },
+
+ { "value": "413-BERMUDIENNE", "label": "\"BERMUDIENNE\"" },
+
+ { "value": "675-BHOUTANAISE", "label": "\"BHOUTANAISE\"" },
+
+ { "value": "073-BIELORUSSE", "label": "\"BIELORUSSE\"" },
+
+ { "value": "676-BIRMANE", "label": "\"BIRMANE\"" },
+
+ {
+ "value": "257-BISSAOGUINEENNE, BISSAO-GUINEENNE",
+ "label": "\"BISSAOGUINEENNE, BISSAO-GUINEENNE\""
+ },
+
+ { "value": "516-BOLIVIENNE", "label": "\"BOLIVIENNE\"" },
+
+ { "value": "479-BONAIRIENNE", "label": "\"BONAIRIENNE\"" },
+
+ {
+ "value": "093-BOSNIENNE, BOSNIAQUE",
+ "label": "\"BOSNIENNE, BOSNIAQUE\""
+ },
+
+ { "value": "391-BOTSWANAISE", "label": "\"BOTSWANAISE\"" },
+
+ { "value": "508-BRESILIENNE", "label": "\"BRESILIENNE\"" },
+
+ { "value": "047-BRETONNE", "label": "\"BRETONNE\"" },
+
+ { "value": "006-BRITANNIQUE", "label": "\"BRITANNIQUE\"" },
+
+ { "value": "013-BRITANNIQUE", "label": "\"BRITANNIQUE\"" },
+
+ { "value": "703-BRUNEIENNE", "label": "\"BRUNEIENNE\"" },
+
+ { "value": "068-BULGARE", "label": "\"BULGARE\"" },
+
+ { "value": "236-BURKINABE", "label": "\"BURKINABE\"" },
+
+ { "value": "328-BURUNDAISE", "label": "\"BURUNDAISE\"" },
+
+ { "value": "331-CABINDAISE", "label": "\"CABINDAISE\"" },
+
+ { "value": "463-CAIMANIENNE", "label": "\"CAIMANIENNE\"" },
+
+ { "value": "696-CAMBODGIENNE", "label": "\"CAMBODGIENNE\"" },
+
+ { "value": "302-CAMEROUNAISE", "label": "\"CAMEROUNAISE\"" },
+
+ { "value": "404-CANADIENNE", "label": "\"CANADIENNE\"" },
+
+ { "value": "021-CANARIENNE", "label": "\"CANARIENNE\"" },
+
+ { "value": "247-CAP-VERDIENNE", "label": "\"CAP-VERDIENNE\"" },
+
+ { "value": "306-CENTRAFRICAINE", "label": "\"CENTRAFRICAINE\"" },
+
+ { "value": "359-CHAGOSSIENNE", "label": "\"CHAGOSSIENNE\"" },
+
+ { "value": "512-CHILIENNE", "label": "\"CHILIENNE\"" },
+
+ { "value": "720-CHINOISE", "label": "\"CHINOISE\"" },
+
+ {
+ "value": "451-CHRISTOPHIENNE, KITTITIENNE ET NEVICIENNE",
+ "label": "\"CHRISTOPHIENNE, KITTITIENNE ET NEVICIENNE\""
+ },
+
+ { "value": "600-CHYPRIOTE", "label": "\"CHYPRIOTE\"" },
+
+ { "value": "480-COLOMBIENNE", "label": "\"COLOMBIENNE\"" },
+
+ { "value": "375-COMORIENNE", "label": "\"COMORIENNE\"" },
+
+ {
+ "value": "318-CONGOLAISE (BRAZZAVILLE)",
+ "label": "\"CONGOLAISE (BRAZZAVILLE)\""
+ },
+
+ {
+ "value": "322-CONGOLAISE (KINSHASA), ZAÏROISE",
+ "label": "\"CONGOLAISE (KINSHASA), ZAÏROISE\""
+ },
+
+ { "value": "805-COOKIENNE", "label": "\"COOKIENNE\"" },
+
+ { "value": "031-CORSE", "label": "\"CORSE\"" },
+
+ {
+ "value": "436-COSTARICAINE, COSTARICIENNE",
+ "label": "\"COSTARICAINE, COSTARICIENNE\""
+ },
+
+ { "value": "034-CRETOISE", "label": "\"CRETOISE\"" },
+
+ { "value": "092-CROATE", "label": "\"CROATE\"" },
+
+ { "value": "448-CUBAINE", "label": "\"CUBAINE\"" },
+
+ { "value": "477-CURACIENNE", "label": "\"CURACIENNE\"" },
+
+ { "value": "008-DANOISE", "label": "\"DANOISE\"" },
+
+ { "value": "338-DJIBOUTIENNE", "label": "\"DJIBOUTIENNE\"" },
+
+ { "value": "456-DOMINICAINE", "label": "\"DOMINICAINE\"" },
+
+ { "value": "460-DOMINIQUAISE", "label": "\"DOMINIQUAISE\"" },
+
+ { "value": "015-ECOSSAISE", "label": "\"ECOSSAISE\"" },
+
+ { "value": "220-EGYPTIENNE", "label": "\"EGYPTIENNE\"" },
+
+ {
+ "value": "647-EMIRIENNE, EMIRATIE",
+ "label": "\"EMIRIENNE, EMIRATIE\""
+ },
+
+ {
+ "value": "310-EQUATOGUINEENNE, EQUATO-GUINEENNE",
+ "label": "\"EQUATOGUINEENNE, EQUATO-GUINEENNE\""
+ },
+
+ { "value": "500-EQUATORIENNE", "label": "\"EQUATORIENNE\"" },
+
+ { "value": "335-ERYTHREENNE", "label": "\"ERYTHREENNE\"" },
+
+ { "value": "011-ESPAGNOLE", "label": "\"ESPAGNOLE\"" },
+
+ { "value": "053-ESTONIENNE", "label": "\"ESTONIENNE\"" },
+
+ { "value": "334-ETHIOPIENNE", "label": "\"ETHIOPIENNE\"" },
+
+ { "value": "475-EUSTACHOISE", "label": "\"EUSTACHOISE\"" },
+
+ { "value": "041-FEROIEN", "label": "\"FEROIEN\"" },
+
+ { "value": "815-FIDJIENNE", "label": "\"FIDJIENNE\"" },
+
+ {
+ "value": "032-FINLANDAISE, FINNOISE",
+ "label": "\"FINLANDAISE, FINNOISE\""
+ },
+
+ { "value": "001-FRANCAISE", "label": "\"FRANCAISE\"" },
+
+ { "value": "314-GABONAISE", "label": "\"GABONAISE\"" },
+
+ { "value": "016-GALLOISE", "label": "\"GALLOISE\"" },
+
+ { "value": "252-GAMBIENNE", "label": "\"GAMBIENNE\"" },
+
+ { "value": "076-GEORGIENNE", "label": "\"GEORGIENNE\"" },
+
+ { "value": "276-GHANEENNE", "label": "\"GHANEENNE\"" },
+
+ { "value": "044-GIBRALTARIENNE", "label": "\"GIBRALTARIENNE\"" },
+
+ { "value": "009-GRECQUE", "label": "\"GRECQUE\"" },
+
+ { "value": "473-GRENADIENNE", "label": "\"GRENADIENNE\"" },
+
+ {
+ "value": "467-GRENADINE, SAINT-VINCENTAISE-ET-GRENADINE",
+ "label": "\"GRENADINE, SAINT-VINCENTAISE-ET-GRENADINE\""
+ },
+
+ { "value": "406-GROENLANDAISE", "label": "\"GROENLANDAISE\"" },
+
+ { "value": "458-GUADELOUPEENNE", "label": "\"GUADELOUPEENNE\"" },
+
+ { "value": "416-GUATEMALTEQUE", "label": "\"GUATEMALTEQUE\"" },
+
+ { "value": "260-GUINEENNE", "label": "\"GUINEENNE\"" },
+
+ { "value": "496-GUYANAISE", "label": "\"GUYANAISE\"" },
+
+ { "value": "488-GUYANIENNE", "label": "\"GUYANIENNE\"" },
+
+ { "value": "452-HAITIENNE", "label": "\"HAITIENNE\"" },
+
+ { "value": "424-HONDURIENNE", "label": "\"HONDURIENNE\"" },
+
+ { "value": "740-HONGKONGAISE", "label": "\"HONGKONGAISE\"" },
+
+ { "value": "064-HONGROISE", "label": "\"HONGROISE\"" },
+
+ { "value": "664-INDIENNE", "label": "\"INDIENNE\"" },
+
+ { "value": "700-INDONESIENNE", "label": "\"INDONESIENNE\"" },
+
+ { "value": "616-IRANIENNE", "label": "\"IRANIENNE\"" },
+
+ {
+ "value": "612-IRAQUIENNE, IRAKIENNE",
+ "label": "\"IRAQUIENNE, IRAKIENNE\""
+ },
+
+ { "value": "007-IRLANDAISE (EIRE)", "label": "\"IRLANDAISE (EIRE)\"" },
+
+ {
+ "value": "017-IRLANDAISE (ULSTER), NORD-IRLANDAISE",
+ "label": "\"IRLANDAISE (ULSTER), NORD-IRLANDAISE\""
+ },
+
+ { "value": "024-ISLANDAISE", "label": "\"ISLANDAISE\"" },
+
+ { "value": "624-ISRAËLIENNE", "label": "\"ISRAËLIENNE\"" },
+
+ { "value": "005-ITALIENNE", "label": "\"ITALIENNE\"" },
+
+ { "value": "272-IVOIRIENNE", "label": "\"IVOIRIENNE\"" },
+
+ { "value": "464-JAMAÏCAINE", "label": "\"JAMAÏCAINE\"" },
+
+ { "value": "732-JAPONAISE", "label": "\"JAPONAISE\"" },
+
+ { "value": "628-JORDANIENNE", "label": "\"JORDANIENNE\"" },
+
+ { "value": "210-KABYLE", "label": "\"KABYLE\"" },
+
+ { "value": "830-KANAKE", "label": "\"KANAKE\"" },
+
+ {
+ "value": "079-KAZAKH, KAZAKHSTANAISE",
+ "label": "\"KAZAKH, KAZAKHSTANAISE\""
+ },
+
+ { "value": "346-KENYANE", "label": "\"KENYANE\"" },
+
+ { "value": "083-KIRGHIZE", "label": "\"KIRGHIZE\"" },
+
+ {
+ "value": "812-KIRIBATIENNE, GILBERTIENNE",
+ "label": "\"KIRIBATIENNE, GILBERTIENNE\""
+ },
+
+ { "value": "090-KOSOVARE", "label": "\"KOSOVARE\"" },
+
+ { "value": "636-KOWEITIENNE", "label": "\"KOWEITIENNE\"" },
+
+ { "value": "050-KURDE (IRAQ)", "label": "\"KURDE (IRAQ)\"" },
+
+ { "value": "051-KURDE (TURQUIE)", "label": "\"KURDE (TURQUIE)\"" },
+
+ { "value": "684-LAOTIENNE", "label": "\"LAOTIENNE\"" },
+
+ { "value": "395-LESOTHANE", "label": "\"LESOTHANE\"" },
+
+ { "value": "054-LETTONNE", "label": "\"LETTONNE\"" },
+
+ { "value": "604-LIBANAISE", "label": "\"LIBANAISE\"" },
+
+ { "value": "268-LIBERIENNE", "label": "\"LIBERIENNE\"" },
+
+ { "value": "216-LIBYENNE", "label": "\"LIBYENNE\"" },
+
+ { "value": "020-LIECHTENSTEINOISE", "label": "\"LIECHTENSTEINOISE\"" },
+
+ { "value": "055-LITUANIENNE", "label": "\"LITUANIENNE\"" },
+
+ {
+ "value": "465-LUCIENNE, SAINTE-LUCIENNE",
+ "label": "\"LUCIENNE, SAINTE-LUCIENNE\""
+ },
+
+ { "value": "012-LUXEMBOURGEOISE", "label": "\"LUXEMBOURGEOISE\"" },
+
+ {
+ "value": "743-MACANAISE, MACANEENNE, MACAAISE",
+ "label": "\"MACANAISE, MACANEENNE, MACAAISE\""
+ },
+
+ { "value": "096-MACEDONIENNE", "label": "\"MACEDONIENNE\"" },
+
+ { "value": "377-MAHORAISE", "label": "\"MAHORAISE\"" },
+
+ { "value": "701-MALAISIENNE", "label": "\"MALAISIENNE\"" },
+
+ {
+ "value": "386-MALAWITE, MALAWIENNE",
+ "label": "\"MALAWITE, MALAWIENNE\""
+ },
+
+ { "value": "667-MALDIVIENNE", "label": "\"MALDIVIENNE\"" },
+
+ { "value": "370-MALGACHE", "label": "\"MALGACHE\"" },
+
+ { "value": "232-MALIENNE", "label": "\"MALIENNE\"" },
+
+ { "value": "529-MALOUINE", "label": "\"MALOUINE\"" },
+
+ { "value": "046-MALTAISE", "label": "\"MALTAISE\"" },
+
+ { "value": "204-MAROCAINE", "label": "\"MAROCAINE\"" },
+
+ { "value": "824-MARSHALLAISE", "label": "\"MARSHALLAISE\"" },
+
+ { "value": "462-MARTINIQUAISE", "label": "\"MARTINIQUAISE\"" },
+
+ { "value": "373-MAURICIENNE", "label": "\"MAURICIENNE\"" },
+
+ { "value": "228-MAURITANIENNE", "label": "\"MAURITANIENNE\"" },
+
+ { "value": "412-MEXICAINE", "label": "\"MEXICAINE\"" },
+
+ { "value": "823-MICRONESIENNE", "label": "\"MICRONESIENNE\"" },
+
+ { "value": "074-MOLDAVE", "label": "\"MOLDAVE\"" },
+
+ { "value": "040-MONEGASQUE", "label": "\"MONEGASQUE\"" },
+
+ { "value": "716-MONGOLE", "label": "\"MONGOLE\"" },
+
+ { "value": "097-MONTENEGRINE", "label": "\"MONTENEGRINE\"" },
+
+ { "value": "366-MOZAMBICAINE", "label": "\"MOZAMBICAINE\"" },
+
+ { "value": "389-NAMIBIENNE", "label": "\"NAMIBIENNE\"" },
+
+ { "value": "803-NAURUANE", "label": "\"NAURUANE\"" },
+
+ {
+ "value": "003-NEERLANDAISE, HOLLANDAISE",
+ "label": "\"NEERLANDAISE, HOLLANDAISE\""
+ },
+
+ { "value": "827-NEO-CALEDONIENNE", "label": "\"NEO-CALEDONIENNE\"" },
+
+ { "value": "804-NEO-ZELANDAISE", "label": "\"NEO-ZELANDAISE\"" },
+
+ { "value": "672-NEPALAISE", "label": "\"NEPALAISE\"" },
+
+ {
+ "value": "816-NI-VANUATU, VANUATUAISE, VANUATUANE",
+ "label": "\"NI-VANUATU, VANUATUAISE, VANUATUANE\""
+ },
+
+ { "value": "432-NICARAGUAYENNE", "label": "\"NICARAGUAYENNE\"" },
+
+ { "value": "288-NIGERIANE", "label": "\"NIGERIANE\"" },
+
+ { "value": "240-NIGERIENNE", "label": "\"NIGERIENNE\"" },
+
+ { "value": "814-NIUEENNE", "label": "\"NIUEENNE\"" },
+
+ { "value": "724-NORD-COREENNE", "label": "\"NORD-COREENNE\"" },
+
+ { "value": "808-NORFOLKAISE", "label": "\"NORFOLKAISE\"" },
+
+ { "value": "028-NORVEGIENNE", "label": "\"NORVEGIENNE\"" },
+
+ { "value": "649-OMANAISE", "label": "\"OMANAISE\"" },
+
+ { "value": "350-OUGANDAISE", "label": "\"OUGANDAISE\"" },
+
+ { "value": "081-OUZBEK", "label": "\"OUZBEK\"" },
+
+ { "value": "662-PAKISTANAISE", "label": "\"PAKISTANAISE\"" },
+
+ { "value": "625-PALESTINIENNE", "label": "\"PALESTINIENNE\"" },
+
+ { "value": "829-PALUANE", "label": "\"PALUANE\"" },
+
+ { "value": "442-PANAMEENNE", "label": "\"PANAMEENNE\"" },
+
+ {
+ "value": "801-PAPOUASIENNE, PAPOUAN-NEO-GUINEENNE",
+ "label": "\"PAPOUASIENNE, PAPOUAN-NEO-GUINEENNE\""
+ },
+
+ { "value": "520-PARAGUAYENNE", "label": "\"PARAGUAYENNE\"" },
+
+ { "value": "504-PERUVIENNE", "label": "\"PERUVIENNE\"" },
+
+ { "value": "708-PHILIPPINE", "label": "\"PHILIPPINE\"" },
+
+ { "value": "813-PITCAIRNAISE", "label": "\"PITCAIRNAISE\"" },
+
+ { "value": "060-POLONAISE", "label": "\"POLONAISE\"" },
+
+ { "value": "826-POLYNESIENNE", "label": "\"POLYNESIENNE\"" },
+
+ { "value": "449-PORTORICAINE", "label": "\"PORTORICAINE\"" },
+
+ { "value": "010-PORTUGAISE", "label": "\"PORTUGAISE\"" },
+
+ {
+ "value": "023-PORTUGAISE (AÇORES)",
+ "label": "\"PORTUGAISE (AÇORES)\""
+ },
+
+ { "value": "644-QATARIENNE", "label": "\"QATARIENNE\"" },
+
+ { "value": "405-QUEBECOISE", "label": "\"QUEBECOISE\"" },
+
+ { "value": "372-REUNIONNAISE", "label": "\"REUNIONNAISE\"" },
+
+ { "value": "066-ROUMAINE", "label": "\"ROUMAINE\"" },
+
+ {
+ "value": "075-RUSSE, TCHETCHENE, DAGUESTANAISE",
+ "label": "\"RUSSE, TCHETCHENE, DAGUESTANAISE\""
+ },
+
+ { "value": "324-RWANDAISE", "label": "\"RWANDAISE\"" },
+
+ { "value": "476-SABEENNE", "label": "\"SABEENNE\"" },
+
+ {
+ "value": "380-SAHRAOUIE, SAHARIENNE",
+ "label": "\"SAHRAOUIE, SAHARIENNE\""
+ },
+
+ { "value": "042-SAINT-MARINAISE", "label": "\"SAINT-MARINAISE\"" },
+
+ {
+ "value": "904-SAINT-MARTINOISE (FRANCE)",
+ "label": "\"SAINT-MARTINOISE (FRANCE)\""
+ },
+
+ {
+ "value": "466-SAINT-MARTINOISE (PAYS-BAS)",
+ "label": "\"SAINT-MARTINOISE (PAYS-BAS)\""
+ },
+
+ {
+ "value": "831-SAINT-PIERRAISE, MIQUELONAISE",
+ "label": "\"SAINT-PIERRAISE, MIQUELONAISE\""
+ },
+
+ {
+ "value": "806-SALOMONIENNE, SALOMONAISE",
+ "label": "\"SALOMONIENNE, SALOMONAISE\""
+ },
+
+ { "value": "428-SALVADORIENNE", "label": "\"SALVADORIENNE\"" },
+
+ { "value": "819-SAMOANE", "label": "\"SAMOANE\"" },
+
+ {
+ "value": "821-SAMOANE-AMERICAINE",
+ "label": "\"SAMOANE-AMERICAINE\""
+ },
+
+ { "value": "311-SANTOMEENNE", "label": "\"SANTOMEENNE\"" },
+
+ { "value": "632-SAOUDIENNE", "label": "\"SAOUDIENNE\"" },
+
+ { "value": "035-SARDE", "label": "\"SARDE\"" },
+
+ { "value": "248-SENEGALAISE", "label": "\"SENEGALAISE\"" },
+
+ { "value": "094-SERBE", "label": "\"SERBE\"" },
+
+ { "value": "355-SEYCHELLOISE", "label": "\"SEYCHELLOISE\"" },
+
+ { "value": "037-SICILIENNE", "label": "\"SICILIENNE\"" },
+
+ { "value": "264-SIERRA-LEONAISE", "label": "\"SIERRA-LEONAISE\"" },
+
+ { "value": "706-SINGAPOURIENNE", "label": "\"SINGAPOURIENNE\"" },
+
+ { "value": "063-SLOVAQUE", "label": "\"SLOVAQUE\"" },
+
+ { "value": "091-SLOVENE", "label": "\"SLOVENE\"" },
+
+ { "value": "342-SOMALIENNE", "label": "\"SOMALIENNE\"" },
+
+ { "value": "224-SOUDANAISE", "label": "\"SOUDANAISE\"" },
+
+ { "value": "669-SRI-LANKAISE", "label": "\"SRI-LANKAISE\"" },
+
+ { "value": "388-SUD-AFRICAINE", "label": "\"SUD-AFRICAINE\"" },
+
+ { "value": "728-SUD-COREENNE", "label": "\"SUD-COREENNE\"" },
+
+ { "value": "226-SUD-SOUDANAISE", "label": "\"SUD-SOUDANAISE\"" },
+
+ { "value": "030-SUEDOISE", "label": "\"SUEDOISE\"" },
+
+ { "value": "036-SUISSE", "label": "\"SUISSE\"" },
+
+ {
+ "value": "492-SURINAMIENNE, SURINAMAISE",
+ "label": "\"SURINAMIENNE, SURINAMAISE\""
+ },
+
+ { "value": "393-SWAZI", "label": "\"SWAZI\"" },
+
+ { "value": "608-SYRIENNE", "label": "\"SYRIENNE\"" },
+
+ { "value": "082-TADJIK", "label": "\"TADJIK\"" },
+
+ { "value": "736-TAIWANAISE", "label": "\"TAIWANAISE\"" },
+
+ { "value": "352-TANZANIENNE", "label": "\"TANZANIENNE\"" },
+
+ { "value": "244-TCHADIENNE", "label": "\"TCHADIENNE\"" },
+
+ { "value": "061-TCHEQUE", "label": "\"TCHEQUE\"" },
+
+ { "value": "680-THAILANDAISE", "label": "\"THAILANDAISE\"" },
+
+ { "value": "721-TIBETAINE", "label": "\"TIBETAINE\"" },
+
+ {
+ "value": "702-TIMORAISE, TIMORIENNE",
+ "label": "\"TIMORAISE, TIMORIENNE\""
+ },
+
+ { "value": "280-TOGOLAISE", "label": "\"TOGOLAISE\"" },
+
+ { "value": "817-TONGIENNE", "label": "\"TONGIENNE\"" },
+
+ { "value": "086-TRANSNISTRIENNE", "label": "\"TRANSNISTRIENNE\"" },
+
+ { "value": "472-TRINIDADIENNE", "label": "\"TRINIDADIENNE\"" },
+
+ { "value": "212-TUNISIENNE", "label": "\"TUNISIENNE\"" },
+
+ { "value": "080-TURKMENE", "label": "\"TURKMENE\"" },
+
+ { "value": "052-TURQUE", "label": "\"TURQUE\"" },
+
+ { "value": "822-TUVALUANE", "label": "\"TUVALUANE\"" },
+
+ { "value": "072-UKRAINIENNE", "label": "\"UKRAINIENNE\"" },
+
+ { "value": "524-URUGUAYENNE", "label": "\"URUGUAYENNE\"" },
+
+ { "value": "045-VATICANE", "label": "\"VATICANE\"" },
+
+ { "value": "484-VENEZUELIENNE", "label": "\"VENEZUELIENNE\"" },
+
+ { "value": "690-VIETNAMIENNE", "label": "\"VIETNAMIENNE\"" },
+
+ { "value": "653-YEMENITE", "label": "\"YEMENITE\"" },
+
+ { "value": "378-ZAMBIENNE", "label": "\"ZAMBIENNE\"" },
+
+ { "value": "382-ZIMBABWEENNE", "label": "\"ZIMBABWEENNE\"" }
+ ],
+ "response": { "name": "NATIO2N" }
+ },
+
+ {
+ "id": "kbwbok7p",
+ "componentType": "InputNumber",
+ "mandatory": false,
+ "page": "14",
+ "min": 0,
+ "max": 20,
+ "decimals": 0,
+ "label": "\"Sans vous compter, combien de personnes vivent habituellement avec vous dans le logement (y compris les étudiants qui ne rentrent que le week-end) ?\"",
+ "conditionFilter": { "value": "true" },
+ "controls": [
+ {
+ "id": "kbwbok7p-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(NBHAB,integer) = 0 and cast(COUPLE,string) = '1')",
+ "errorMessage": "\"Vous avez déclaré être en couple avec une personne qui vit dans le logement, le nombre de personnes vivant avec vous devrait être supérieur ou égal à 1.\"",
+ "bindingDependencies": ["NBHAB", "COUPLE"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": ["NBHAB"],
+ "response": { "name": "NBHAB" }
+ },
+
+ {
+ "id": "khah36o1",
+ "componentType": "FilterDescription",
+ "page": "14",
+ "filterDescription": false,
+ "label": "\"S’il n’y a pas d’autres habitants que vous dans votre logement, passez au module II. \"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ }
+ },
+
+ {
+ "id": "kbwbx3zb",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "15",
+ "positioning": "HORIZONTAL",
+ "label": "\"Toujours sans vous compter, parmi les personnes que vous avez déclarées à la question précédente, combien ont :\"",
+ "conditionFilter": {
+ "value": "(not(cast(NBHAB,integer) = 0))",
+ "bindingDependencies": ["NBHAB"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kbw7j01m",
+ "page": "1",
+ "label": "\"I - Caractéristiques socio-démographiques\""
+ }
+ },
+ "bindingDependencies": [
+ "NENF013",
+ "NENF1415",
+ "NENF1617",
+ "NADU1874",
+ "NADU75"
+ ],
+ "cells": [
+ [
+ { "headerCell": true, "label": "" },
+
+ { "headerCell": true, "label": "\"Nombre de personnes\"" }
+ ],
+
+ [
+ { "value": "1", "label": "\"13 ans ou moins\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 18,
+ "decimals": 0,
+ "id": "kbwbx3zb-QOP-khq4wlro",
+ "response": { "name": "NENF013" },
+ "bindingDependencies": ["NENF013"]
+ }
+ ],
+
+ [
+ { "value": "2", "label": "\"de 14 à 15 ans\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 18,
+ "decimals": 0,
+ "id": "kbwbx3zb-QOP-khq57wng",
+ "response": { "name": "NENF1415" },
+ "bindingDependencies": ["NENF1415"]
+ }
+ ],
+
+ [
+ { "value": "3", "label": "\"de 16 à 17 ans\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 18,
+ "decimals": 0,
+ "id": "kbwbx3zb-QOP-khq4u7k0",
+ "response": { "name": "NENF1617" },
+ "bindingDependencies": ["NENF1617"]
+ }
+ ],
+
+ [
+ { "value": "4", "label": "\"de 18 à 74 ans\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 18,
+ "decimals": 0,
+ "id": "kbwbx3zb-QOP-khq4y8cs",
+ "response": { "name": "NADU1874" },
+ "bindingDependencies": ["NADU1874"]
+ }
+ ],
+
+ [
+ { "value": "5", "label": "\"75 ans ou plus\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 18,
+ "decimals": 0,
+ "id": "kbwbx3zb-QOP-khq53ilv",
+ "response": { "name": "NADU75" },
+ "bindingDependencies": ["NADU75"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "kc0h2x4z",
+ "componentType": "Sequence",
+ "page": "16",
+ "label": "\"II - L’équipement de votre ménage en Internet\"",
+ "declarations": [
+ {
+ "id": "kc0h2x4z-kc0gvsub",
+ "declarationType": "COMMENT",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Abordons les questions sur l’équipement de votre ménage en nouvelles technologies et téléphonie, quel que soit l’appareil utilisé (par exemple, ordinateur de bureau, ordinateur portable, tablette, téléphone mobile ou smartphone, appareils intelligents, etc.)\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h2x4z",
+ "page": "16",
+ "label": "\"II - L’équipement de votre ménage en Internet\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0gq6qv",
+ "componentType": "Radio",
+ "mandatory": true,
+ "page": "17",
+ "label": "\"Votre ménage a-t-il accès à Internet depuis son domicile ?\"",
+ "declarations": [
+ {
+ "id": "kc0gq6qv-kc0h5ajs",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"(y compris depuis un ordinateur portable, une tablette ou un téléphone portable)\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h2x4z",
+ "page": "16",
+ "label": "\"II - L’équipement de votre ménage en Internet\""
+ }
+ },
+ "bindingDependencies": ["NET"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "NET" }
+ },
+
+ {
+ "id": "kc0s0e7f",
+ "componentType": "FilterDescription",
+ "page": "17",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas accès à Internet depuis votre domicile, passez au module III\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h2x4z",
+ "page": "16",
+ "label": "\"II - L’équipement de votre ménage en Internet\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0gvvrz",
+ "componentType": "CheckboxGroup",
+ "page": "18",
+ "label": "\"Votre connexion à Internet est-elle ?\"",
+ "declarations": [
+ {
+ "id": "kc0gvvrz-kc0h4j6r",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(( cast(NET,string) = \"2\" or cast(NET,string) = \"\" )))",
+ "bindingDependencies": ["NET"]
+ },
+ "controls": [
+ {
+ "id": "kc0gvvrz-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(DEBITX1,integer) = '' and cast(DEBITX2,integer) = '' and cast(DEBITX3,integer) = '' and cast(DEBITX4,integer) = '')",
+ "errorMessage": "\"Vous n’avez pas répondu à cette question. Si c’est un oubli, complétez votre réponse. \"",
+ "bindingDependencies": ["DEBITX1", "DEBITX2", "DEBITX3", "DEBITX4"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h2x4z",
+ "page": "16",
+ "label": "\"II - L’équipement de votre ménage en Internet\""
+ }
+ },
+ "bindingDependencies": ["DEBITX1", "DEBITX2", "DEBITX3", "DEBITX4"],
+ "responses": [
+ {
+ "id": "kc0gvvrz-QOP-khq4y8i0",
+ "label": "\" Une connexion à haut débit au réseau fixe, par l’ADSL, le câble, la fibre optique, le Wi-Fi ou par satellite\"",
+ "response": { "name": "DEBITX1" }
+ },
+
+ {
+ "id": "kc0gvvrz-QOP-khq4yc64",
+ "label": "\" Une connexion à haut débit au réseau mobile (téléphone, tablette ou ordinateur portable) par la 3G ou la 4G\"",
+ "response": { "name": "DEBITX2" }
+ },
+
+ {
+ "id": "kc0gvvrz-QOP-khq59nbn",
+ "label": "\" Une connexion fixe à bas débit à l’aide d’un modem (réseau téléphonique classique)\"",
+ "response": { "name": "DEBITX3" }
+ },
+
+ {
+ "id": "kc0gvvrz-QOP-khq4t0j9",
+ "label": "\" Une connexion mobile à bas débit sur un téléphone portable (GSM, GPRS, EDGE)\"",
+ "response": { "name": "DEBITX4" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0h9y1j",
+ "componentType": "Sequence",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\"",
+ "declarations": [
+ {
+ "id": "kc0h9y1j-kc0hkapg",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Nous venons de voir les accès de votre ménage à Internet, voyons maintenant l’usage que vous faites d’Internet.Nous nous intéressons aux usages dans tout type de lieu (à votre domicile, au travail ou à un autre endroit) et sur tout type de support (ordinateurs, tablettes, smartphones, liseuses, PDA, consoles de jeu... ), même pour un usage très occasionnel (si vous n’utilisez Internet qu’une fois par an pour la déclaration d’impôts sur le revenu par exemple).\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0h7448",
+ "componentType": "Radio",
+ "mandatory": true,
+ "page": "20",
+ "label": "\"Personnellement, quand avez-vous utilisé Internet pour la dernière fois ?\"",
+ "declarations": [
+ {
+ "id": "kc0h7448-kc0htor3",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" (quel que soit le lieu ou le type d’accès ; ne pas prendre en compte votre connexion pour répondre à cette enquête)\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "controls": [
+ {
+ "id": "kc0h7448-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(NUSEWEB,string) = '')",
+ "errorMessage": "\"Vous n’avez pas répondu à cette question. Si c’est un oubli, complétez votre réponse.\"",
+ "bindingDependencies": ["NUSEWEB"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ },
+ "bindingDependencies": ["NUSEWEB"],
+ "options": [
+ { "value": "1", "label": "\" Au cours des trois derniers mois\"" },
+
+ { "value": "2", "label": "\" Entre trois mois et un an\"" },
+
+ { "value": "3", "label": "\" Il y a plus d’un an\"" },
+
+ { "value": "4", "label": "\"Vous n’avez jamais utilisé Internet\"" }
+ ],
+ "response": { "name": "NUSEWEB" }
+ },
+
+ {
+ "id": "kc0s8qyr",
+ "componentType": "FilterDescription",
+ "page": "20",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas utilisé Internet dans l’année, passez à la question 3 du module IV\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0tb3as",
+ "componentType": "FilterDescription",
+ "page": "20",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas utilisé Internet dans les trois derniers mois mais que vous avez utilisé Internet dans l’année, passez à la question 1 du module IV\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0haj1j",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "21",
+ "label": "\"Au cours des trois derniers mois, en moyenne, vous avez utilisé Internet...\"",
+ "declarations": [
+ {
+ "id": "kc0haj1j-kc0hqlhc",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"(quel que soit le lieu ou le type d’accès)\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" )))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+ "controls": [
+ {
+ "id": "kc0haj1j-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(USEWEB,string) = '')",
+ "errorMessage": "\"Vous n’avez pas répondu à cette question. Si c’est un oubli, complétez votre réponse. \"",
+ "bindingDependencies": ["USEWEB"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ },
+ "bindingDependencies": ["USEWEB"],
+ "options": [
+ { "value": "1", "label": "\" tous les jours ou presque \"" },
+
+ {
+ "value": "2",
+ "label": "\" pas tous les jours, mais au moins une fois par semaine\""
+ },
+
+ { "value": "3", "label": "\" moins d’une fois par semaine\"" }
+ ],
+ "response": { "name": "USEWEB" }
+ },
+
+ {
+ "id": "kc0rye5e",
+ "componentType": "FilterDescription",
+ "page": "21",
+ "filterDescription": false,
+ "label": "\"Si vous n’utilisez pas Internet tous les jours ou presque passez à la question 4\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" )))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0hudx9",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "22",
+ "label": "\"En général, avez-vous utilisé Internet plusieurs fois par jour ?\"",
+ "declarations": [
+ {
+ "id": "kc0hudx9-kc0hifaz",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" (quel que soit le lieu ou le type d’accès)\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" ))) and (not(cast(USEWEB,string) <> 1))",
+ "bindingDependencies": ["NUSEWEB", "USEWEB"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ },
+ "bindingDependencies": ["SEVWEB"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "SEVWEB" }
+ },
+
+ {
+ "id": "kc0hsh54",
+ "componentType": "CheckboxGroup",
+ "page": "23",
+ "label": "\"Au cours des trois derniers mois, avez-vous utilisé Internet sur les appareils suivants ?\"",
+ "declarations": [
+ {
+ "id": "kc0hsh54-kh3q51ny",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"(quel que soit le lieu ou le type d’accès)\""
+ },
+
+ {
+ "id": "kc0hsh54-kh3qe4w9",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" )))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ },
+ "bindingDependencies": [
+ "DEVICEX1",
+ "DEVICEX2",
+ "DEVICEX3",
+ "DEVICEX4",
+ "DEVICEX5"
+ ],
+ "responses": [
+ {
+ "id": "kc0hsh54-QOP-khq554xy",
+ "label": "\"Un ordinateur fixe\"",
+ "response": { "name": "DEVICEX1" }
+ },
+
+ {
+ "id": "kc0hsh54-QOP-khq57r3y",
+ "label": "\" Un ordinateur portable\"",
+ "response": { "name": "DEVICEX2" }
+ },
+
+ {
+ "id": "kc0hsh54-QOP-khq4xdhf",
+ "label": "\" Une tablette\"",
+ "response": { "name": "DEVICEX3" }
+ },
+
+ {
+ "id": "kc0hsh54-QOP-khq517gl",
+ "label": "\" Un téléphone portable ou un smartphone\"",
+ "response": { "name": "DEVICEX4" }
+ },
+
+ {
+ "id": "kc0hsh54-QOP-khq51qo1",
+ "label": "\" Un autre appareil mobile (console de jeux, lecteur média, liseuse, montre connectée…)\"",
+ "response": { "name": "DEVICEX5" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0hyu5k",
+ "componentType": "CheckboxGroup",
+ "page": "24",
+ "label": "\"Au cours des trois derniers mois, hors usage professionnel, avez-vous utilisé Internet (y compris viades applications) pour …\"",
+ "declarations": [
+ {
+ "id": "kc0hyu5k-kc0hwdd6",
+ "declarationType": "COMMENT",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" (quel que soit le lieu d’utilisation) \""
+ },
+
+ {
+ "id": "kc0hyu5k-kc0i0z56",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" )))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ },
+ "bindingDependencies": [
+ "PRATINTXX1",
+ "PRATINTXX2",
+ "PRATINTXX3",
+ "PRATINTXX4",
+ "PRATINTXX5",
+ "PRATINTXX6",
+ "PRATINTXX7",
+ "PRATINTXX8",
+ "PRATINTXX9",
+ "PRATINTXX10",
+ "PRATINTXX11",
+ "PRATINTXX12"
+ ],
+ "responses": [
+ {
+ "id": "kc0hyu5k-QOP-khq54864",
+ "label": "\" envoyer et recevoir des e-mails\"",
+ "response": { "name": "PRATINTXX1" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq4r4y5",
+ "label": "\" téléphoner (ou passer des appels vidéo) par Internet, par exemple via Skype, Messenger, WhatsApp, Facetime, Viber, Snapchat\"",
+ "response": { "name": "PRATINTXX2" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq4uide",
+ "label": "\" créer un profil ou poster des messages sur les réseaux sociaux (Facebook, Twitter, Youtube, Instagram, Snapchat, etc.) \"",
+ "response": { "name": "PRATINTXX3" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq57dwt",
+ "label": "\" utiliser une messagerie instantanée, c’est-à-dire échanger des messages, par exemple via Skype, Messenger, WhatsApp, Viber, Snapchat\"",
+ "response": { "name": "PRATINTXX4" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq4swlf",
+ "label": "\" lire des journaux, des magazines ou consulter des sites d’actualité\"",
+ "response": { "name": "PRATINTXX5" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq4t9bu",
+ "label": "\" rechercher des informations liées à la santé (ex : sur une maladie, des blessures, la nutrition ou l’amélioration de la santé)\"",
+ "response": { "name": "PRATINTXX6" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq53xy2",
+ "label": "\" rechercher des informations sur des produits et services (horaires de transport, catalogues en ligne, etc.)\"",
+ "response": { "name": "PRATINTXX7" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq575jp",
+ "label": "\" exprimer des opinions sur des questions civiques ou politiques via des sites web ou médias sociaux (Facebook, Twitter, Instagram, YouTube, etc.) \"",
+ "response": { "name": "PRATINTXX8" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq506ss",
+ "label": "\" participer à des consultations ou des votes en ligne sur des questions civiques ou politiques (ex : plan d’urbanisation, signature d’une pétition)\"",
+ "response": { "name": "PRATINTXX9" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq5atam",
+ "label": "\" chercher un emploi ou postuler à un emploi\"",
+ "response": { "name": "PRATINTXX10" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq4vsmz",
+ "label": "\" vendre des produits et services sur des sites en ligne ou application (eBay, Leboncoin, Facebook Marketplace, etc.)\"",
+ "response": { "name": "PRATINTXX11" }
+ },
+
+ {
+ "id": "kc0hyu5k-QOP-khq59lna",
+ "label": "\" accéder à votre compte bancaire\"",
+ "response": { "name": "PRATINTXX12" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0hwk4s",
+ "componentType": "CheckboxGroup",
+ "page": "25",
+ "label": "\"Concernant l’apprentissage par Internet (que ce soit pour un usage privé ou professionnel), au cours des trois derniers mois, avez-vous déjà personnellement…\"",
+ "declarations": [
+ {
+ "id": "kc0hwk4s-kc0i1n7z",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" )))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+ "controls": [
+ {
+ "id": "kc0hwk4s-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(EDUPROX3,integer) = '1' and ( cast(EDUPROX1,integer) = '1' or cast(EDUPROX2,integer) = '1' ))",
+ "errorMessage": "\"Votre réponse - « vous n’avez pratiqué aucune activité de formation sur Internet » - est incompatible avec les autres réponses\"",
+ "bindingDependencies": ["EDUPROX3", "EDUPROX1", "EDUPROX2"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0h9y1j",
+ "page": "19",
+ "label": "\"III - Votre usage d’Internet\""
+ }
+ },
+ "bindingDependencies": ["EDUPROX1", "EDUPROX2", "EDUPROX3"],
+ "responses": [
+ {
+ "id": "kc0hwk4s-QOP-khq524j0",
+ "label": "\" suivi des cours en ligne \"",
+ "response": { "name": "EDUPROX1" }
+ },
+
+ {
+ "id": "kc0hwk4s-QOP-khq52w14",
+ "label": "\" utilisé des supports de formation autres que des cours en ligne (supports audiovisuels, logiciels d’apprentissage en ligne, manuels électroniques, applications d’apprentissage etc.)\"",
+ "response": { "name": "EDUPROX2" }
+ },
+
+ {
+ "id": "kc0hwk4s-QOP-khq4y48m",
+ "label": "\"Vous n’avez pratiqué aucune activité de formation sur Internet.\"",
+ "response": { "name": "EDUPROX3" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0i2t9p",
+ "componentType": "Sequence",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\"",
+ "declarations": [
+ {
+ "id": "kc0i2t9p-kc0ie0xd",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Poursuivons avec les questions sur votre utilisation des services administratifs sur Internet pour votre usage propre ou celui d’une tierce personne mais hors usage professionnel. Ces questions vous concernent même si vous n’avez pas utilisé Internet au cours de l’année.\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0i0jec",
+ "componentType": "CheckboxGroup",
+ "page": "27",
+ "label": "\"Au cours des douze derniers mois, hors usage professionnel et quel que soit le lieu d’utilisation, avez-vous personnellement utilisé Internet pour contacter une administration ou un service public pour …\"",
+ "declarations": [
+ {
+ "id": "kc0i0jec-kc0ik811",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" (exclure les e-mails) \""
+ },
+
+ {
+ "id": "kc0i0jec-kc0i9s2a",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\"))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+ "controls": [
+ {
+ "id": "kc0i0jec-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(ADMX5,integer) = '1' and ( cast(ADMX1,integer) = '1' or cast(ADMX2,integer) = '1' or cast(ADMX3,integer) = '1' or cast(ADMX4,integer) = '1' ))",
+ "errorMessage": "\"La réponse « Aucun contact par Internet avec une administration ou un service public » n’est pas compatible avec les autres items.\"",
+ "bindingDependencies": ["ADMX5", "ADMX1", "ADMX2", "ADMX3", "ADMX4"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ },
+ "bindingDependencies": ["ADMX1", "ADMX2", "ADMX3", "ADMX4", "ADMX5"],
+ "responses": [
+ {
+ "id": "kc0i0jec-QOP-khq4r6w7",
+ "label": "\" obtenir des informations administratives (mairie, bibliothèque, pôle emploi, CAF, etc.)\"",
+ "response": { "name": "ADMX1" }
+ },
+
+ {
+ "id": "kc0i0jec-QOP-khq4yyw4",
+ "label": "\" télécharger des formulaires administratifs (formulaire CAF, etc.) \"",
+ "response": { "name": "ADMX2" }
+ },
+
+ {
+ "id": "kc0i0jec-QOP-khq55nsz",
+ "label": "\" remplir en ligne votre déclaration de revenus\"",
+ "response": { "name": "ADMX3" }
+ },
+
+ {
+ "id": "kc0i0jec-QOP-khq4s2d1",
+ "label": "\" effectuer d’autres démarches administratives en ligne (inscription en enseignement supérieur, déclaration de changement de coordonnées, etc.)\"",
+ "response": { "name": "ADMX4" }
+ },
+
+ {
+ "id": "kc0i0jec-QOP-khq4vovr",
+ "label": "\" Aucun contact par Internet avec une administration ou un service public\"",
+ "response": { "name": "ADMX5" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0ticsm",
+ "componentType": "FilterDescription",
+ "page": "27",
+ "filterDescription": false,
+ "label": "\"Si avez envoyé des formulaires administratifs par Internet (remplir en ligne votre déclaration de revenus et/ou effectuer d’autres démarches administratives en ligne), passez à la question 3\"",
+ "conditionFilter": {
+ "value": "(not(cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\"))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0i8uqf",
+ "componentType": "CheckboxGroup",
+ "page": "28",
+ "label": "\"Pour quelles raisons n’avez-vous pas transmis de formulaires administratifs par Internet au cours des douze derniers mois ?\"",
+ "declarations": [
+ {
+ "id": "kc0i8uqf-kc0if0sf",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\")) and (not(cast(ADMX3,integer) = 1 or cast(ADMX4,integer) = 1))",
+ "bindingDependencies": ["NUSEWEB", "ADMX3", "ADMX4"]
+ },
+ "controls": [
+ {
+ "id": "kc0i8uqf-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(RAISADMX10,integer) = '1' and ( cast(RAISADMX1,integer) = '1' or cast(RAISADMX2,integer) = '1' or cast(RAISADMX3,integer) = '1' or cast(RAISADMX4,integer) = '1' or cast(RAISADMX5,integer) = '1' or cast(RAISADMX6,integer) = '1' or cast(RAISADMX7,integer) = '1' or cast(RAISADMX8,integer) = '1' or cast(RAISADMX9,integer) = '1' or cast(RAISADMX11,integer) = '1' ))",
+ "errorMessage": "\"La réponse « Vous n’aviez pas de formulaire à envoyer » n’est pas compatible avec les autres items.\"",
+ "bindingDependencies": [
+ "RAISADMX10",
+ "RAISADMX1",
+ "RAISADMX2",
+ "RAISADMX3",
+ "RAISADMX4",
+ "RAISADMX5",
+ "RAISADMX6",
+ "RAISADMX7",
+ "RAISADMX8",
+ "RAISADMX9",
+ "RAISADMX11"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ },
+ "bindingDependencies": [
+ "RAISADMX1",
+ "RAISADMX2",
+ "RAISADMX3",
+ "RAISADMX4",
+ "RAISADMX5",
+ "RAISADMX6",
+ "RAISADMX7",
+ "RAISADMX8",
+ "RAISADMX9",
+ "RAISADMX10",
+ "RAISADMX11"
+ ],
+ "responses": [
+ {
+ "id": "kc0i8uqf-QOP-khq4sbs6",
+ "label": "\" Il n’y avait pas de site Internet qui permettait de le faire \"",
+ "response": { "name": "RAISADMX1" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq5asf5",
+ "label": "\" Vous préférez aller directement sur place\"",
+ "response": { "name": "RAISADMX2" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq4w1p6",
+ "label": "\" Vous trouvez que par Internet on n’a pas de réponses immédiates \"",
+ "response": { "name": "RAISADMX3" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq50ke6",
+ "label": "\" Vous préférez les envoyer par courrier \"",
+ "response": { "name": "RAISADMX4" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq54f9i",
+ "label": "\" Vous manquez de connaissances informatiques\"",
+ "response": { "name": "RAISADMX5" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq51hx4",
+ "label": "\"Vous avez peur que vos données personnelles ne soient pas sécurisées \"",
+ "response": { "name": "RAISADMX6" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq4ty9t",
+ "label": "\" Le service dont vous aviez besoin nécessitait de toute façon un déplacement de votre part\"",
+ "response": { "name": "RAISADMX7" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq4wqcg",
+ "label": "\" Vous refusez ou ne pouvez pas payer en ligne (crainte d’une fraude ou absence de moyen de paiement adapté)\"",
+ "response": { "name": "RAISADMX8" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq4vb00",
+ "label": "\" Une autre personne l’a fait pour vous\"",
+ "response": { "name": "RAISADMX9" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq4ta3s",
+ "label": "\" Vous n’aviez pas de formulaire à envoyer \"",
+ "response": { "name": "RAISADMX10" }
+ },
+
+ {
+ "id": "kc0i8uqf-QOP-khq58yzh",
+ "label": "\" Pour une autre raison\"",
+ "response": { "name": "RAISADMX11" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0i7d8t",
+ "componentType": "CheckboxGroup",
+ "page": "29",
+ "label": "\"Au cours des douze derniers mois, avez-vous demandé de l’aide pour effectuer une démarche administrative sur Internet (par exemple pour prendre un RDV, obtenir une information, faire une demande de droit, toucher une allocation ou une prestation sociale, accéder à un compte personnel, etc. )?\"",
+ "declarations": [
+ {
+ "id": "kc0i7d8t-kc0is7qk",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "controls": [
+ {
+ "id": "kc0i7d8t-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(AIDADMX5,integer) = '1' and (cast(AIDADMX1,integer) = '1' or cast(AIDADMX2,integer) = '1' or cast(AIDADMX3,integer) = '1' or cast(AIDADMX4,integer) = '1' ))",
+ "errorMessage": "\"La réponse « Non » n’est pas compatible avec les autres items.\"",
+ "bindingDependencies": [
+ "AIDADMX5",
+ "AIDADMX1",
+ "AIDADMX2",
+ "AIDADMX3",
+ "AIDADMX4"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ },
+ "bindingDependencies": [
+ "AIDADMX1",
+ "AIDADMX2",
+ "AIDADMX3",
+ "AIDADMX4",
+ "AIDADMX5"
+ ],
+ "responses": [
+ {
+ "id": "kc0i7d8t-QOP-khq5268g",
+ "label": "\" Oui, auprès de ma famille, d’amis ou de voisins\"",
+ "response": { "name": "AIDADMX1" }
+ },
+
+ {
+ "id": "kc0i7d8t-QOP-khq51zck",
+ "label": "\" Oui, auprès d’un agent de l’administration\"",
+ "response": { "name": "AIDADMX2" }
+ },
+
+ {
+ "id": "kc0i7d8t-QOP-khq564bq",
+ "label": "\" Oui, auprès d’un travailleur social ou d’une association\"",
+ "response": { "name": "AIDADMX3" }
+ },
+
+ {
+ "id": "kc0i7d8t-QOP-khq4tog4",
+ "label": "\" Oui, auprès d’une autre personne\"",
+ "response": { "name": "AIDADMX4" }
+ },
+
+ {
+ "id": "kc0i7d8t-QOP-khq4tk2c",
+ "label": "\" Non\"",
+ "response": { "name": "AIDADMX5" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0is12p",
+ "componentType": "CheckboxGroup",
+ "page": "30",
+ "label": "\"Au cours des douze derniers mois, avez-vous renoncé à faire des démarches administratives sur Internet ?\"",
+ "declarations": [
+ {
+ "id": "kc0is12p-kc0iid7i",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "controls": [
+ {
+ "id": "kc0is12p-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(RENADMX9,integer) = '1' and ( cast(RENADMX1,integer) = '1' or cast(RENADMX2,integer) = '1' or cast(RENADMX3,integer) = '1' or cast(RENADMX4,integer) = '1' or cast(RENADMX5,integer) = '1' or cast(RENADMX6,integer) = '1' or cast(RENADMX7,integer) = '1' or cast(RENADMX8,integer) = '1' ))",
+ "errorMessage": "\"La réponse « Non » n’est pas compatible avec les autres items.\"",
+ "bindingDependencies": [
+ "RENADMX9",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ },
+ "bindingDependencies": [
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "RENADMX9"
+ ],
+ "responses": [
+ {
+ "id": "kc0is12p-QOP-khq56vrj",
+ "label": "\" Oui, car le site Internet était en panne ou bloquait \"",
+ "response": { "name": "RENADMX1" }
+ },
+
+ {
+ "id": "kc0is12p-QOP-khq55b5d",
+ "label": "\" Oui, car je n’ai pas eu accès à un ordinateur ou à Internet\"",
+ "response": { "name": "RENADMX2" }
+ },
+
+ {
+ "id": "kc0is12p-QOP-khq4xmcr",
+ "label": "\" Oui, car je n’ai pas pu demander ou obtenir de l’aide\"",
+ "response": { "name": "RENADMX3" }
+ },
+
+ {
+ "id": "kc0is12p-QOP-khq54ok4",
+ "label": "\" Oui, car l’administration n’a pas répondu à mes questions\"",
+ "response": { "name": "RENADMX4" }
+ },
+
+ {
+ "id": "kc0is12p-QOP-khq5a1ju",
+ "label": "\" Oui, je n’ai même pas essayé car je m’en sentais incapable\"",
+ "response": { "name": "RENADMX5" }
+ },
+
+ {
+ "id": "kc0is12p-QOP-khq506yy",
+ "label": "\" Oui, car cela n’en valait pas la peine (inutile, gain attendu trop faible)\"",
+ "response": { "name": "RENADMX6" }
+ },
+
+ {
+ "id": "kc0is12p-QOP-khq4w2cu",
+ "label": "\"Oui, car les démarches étaient trop complexes (trop de pièces justificatives, procédure longue)\"",
+ "response": { "name": "RENADMX7" }
+ },
+
+ {
+ "id": "kc0is12p-QOP-khq569s3",
+ "label": "\" Oui, pour une autre raison\"",
+ "response": { "name": "RENADMX8" }
+ },
+
+ {
+ "id": "kc0is12p-QOP-khq4tdl7",
+ "label": "\" Non\"",
+ "response": { "name": "RENADMX9" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0tpgsj",
+ "componentType": "FilterDescription",
+ "page": "30",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas renoncé à faire des démarches en ligne, passez au module V\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ }
+ },
+
+ {
+ "id": "kebbvyk4",
+ "componentType": "FilterDescription",
+ "page": "30",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas accédé à Internet au cours de l’année, passez au module VIII\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0iso1a",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "31",
+ "label": "\"Avez-vous pu effectuer ces démarches d’une autre façon (sur place, par téléphone, etc.) ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1) or ((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))",
+ "bindingDependencies": [
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "NUSEWEB"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ },
+ "bindingDependencies": ["AUTADM"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "AUTADM" }
+ },
+
+ {
+ "id": "kc0u0vjt",
+ "componentType": "FilterDescription",
+ "page": "31",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas accédé à Internet au cours de l’année, passez au module VIII\"",
+ "conditionFilter": {
+ "value": "(not((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1) or ((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))",
+ "bindingDependencies": [
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "NUSEWEB"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0i2t9p",
+ "page": "26",
+ "label": "\"IV - Votre utilisation des services administratifs\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0ir8tk",
+ "componentType": "Sequence",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \"",
+ "declarations": [
+ {
+ "id": "kc0ir8tk-kc0ixcd2",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Abordons les questions concernant vos achats ou commandes sur Internet à titre privé, c’est-à-dire pour votre usage ou celui d’une tierce personne mais hors usage professionnel.\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ }
+ },
+
+ {
+ "id": "kc0ihwjw",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "33",
+ "label": "\"Avez-vous déjà, personnellement, acheté ou commandé des produits ou des services sur Internet pour un usage privé (c’est-à-dire hors usage professionnel) ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": ["ECOM"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "ECOM" }
+ },
+
+ {
+ "id": "kc0ty9z8",
+ "componentType": "FilterDescription",
+ "page": "33",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez jamais acheté ou commandé sur Internet, passez à la question 14\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ }
+ },
+
+ {
+ "id": "kc0iuqho",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "34",
+ "label": "\"La dernière fois, était-ce...\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": ["DATECOM"],
+ "options": [
+ { "value": "1", "label": "\" Au cours des trois derniers mois\"" },
+
+ { "value": "2", "label": "\" Entre trois mois et un an\"" },
+
+ { "value": "3", "label": "\" Il y a plus d’un an\"" }
+ ],
+ "response": { "name": "DATECOM" }
+ },
+
+ {
+ "id": "kc0ulekq",
+ "componentType": "FilterDescription",
+ "page": "34",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas acheté sur Internet au cours des trois derniers mois, passez à la question 14\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ }
+ },
+
+ {
+ "id": "kc0ijn79",
+ "componentType": "CheckboxGroup",
+ "page": "35",
+ "label": "\"Au cours des trois derniers mois, hors usage professionnel, avez-vous personnellement acheté ou commandé sur Internet ou via une application…\"",
+ "declarations": [
+ {
+ "id": "kc0ijn79-kc0ivga8",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Inclure les articles de seconde main.\""
+ },
+
+ {
+ "id": "kc0ijn79-kc0ipy1a",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": [
+ "ACHATXX1",
+ "ACHATXX2",
+ "ACHATXX3",
+ "ACHATXX4",
+ "ACHATXX5",
+ "ACHATXX6",
+ "ACHATXX7",
+ "ACHATXX8",
+ "ACHATXX9",
+ "ACHATXX10",
+ "ACHATXX11",
+ "ACHATXX12",
+ "ACHATXX13",
+ "ACHATXX14",
+ "ACHATXX15",
+ "ACHATXX16"
+ ],
+ "responses": [
+ {
+ "id": "kc0ijn79-QOP-khq4wht6",
+ "label": "\" des vêtements (y compris vêtements de sport), chaussures ou accessoires (sacs, bijoux, etc.)\"",
+ "response": { "name": "ACHATXX1" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4s5p8",
+ "label": "\" des articles de sport (hors vêtements)\"",
+ "response": { "name": "ACHATXX2" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4rsgz",
+ "label": "\" des jouets ou des articles pour enfants (couches, biberons, poussettes, etc.)\"",
+ "response": { "name": "ACHATXX3" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq58vbq",
+ "label": "\" des meubles, accessoires pour la maison (tapis, rideaux, etc.) ou des articles de jardinage (outils, plantes, etc.) \"",
+ "response": { "name": "ACHATXX4" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq55x51",
+ "label": "\" de la musique (CD, vinyles, etc.) \"",
+ "response": { "name": "ACHATXX5" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4w83f",
+ "label": "\" des films ou séries (DVD, Blu-Ray, etc.) \"",
+ "response": { "name": "ACHATXX6" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4unit",
+ "label": "\" des livres, magazines ou journaux papier \"",
+ "response": { "name": "ACHATXX7" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4qzw8",
+ "label": "\" des ordinateurs, tablettes, téléphones mobiles ou accessoires informatiques \"",
+ "response": { "name": "ACHATXX8" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4whii",
+ "label": "\" des appareils électroniques (téléviseurs, chaînes stéréo, appareils photos, etc.) ou des appareils électroménagers (machine à laver, etc.)\"",
+ "response": { "name": "ACHATXX9" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4vs73",
+ "label": "\" des médicaments ou des compléments alimentaires (hors renouvellement d’ordonnance en ligne)\"",
+ "response": { "name": "ACHATXX10" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq50q4f",
+ "label": "\" des plats livrés à domicile (via Just Eat, Deliveroo, UberEats, etc.) \"",
+ "response": { "name": "ACHATXX11" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq56uh2",
+ "label": "\" des produits alimentaires (y compris drive et kits-repas à cuisiner)\"",
+ "response": { "name": "ACHATXX12" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4wpoz",
+ "label": "\" des cosmétiques, des articles de beauté ou de bien-être\"",
+ "response": { "name": "ACHATXX13" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq551tg",
+ "label": "\" des produits de nettoyage ou d’hygiène corporelle (brosses à dents, mouchoirs, produits de lessive, etc.)\"",
+ "response": { "name": "ACHATXX14" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4xyyi",
+ "label": "\" des vélos, motos, voitures ou d’autres véhicules ou leurs pièces détachées\"",
+ "response": { "name": "ACHATXX15" }
+ },
+
+ {
+ "id": "kc0ijn79-QOP-khq4ywh6",
+ "label": "\" d’autres articles \"",
+ "response": { "name": "ACHATXX16" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0iq8u1",
+ "componentType": "CheckboxGroup",
+ "page": "36",
+ "label": "\"Les achats que vous avez déclarés étaient-ils effectués auprès de…\"",
+ "declarations": [
+ {
+ "id": "kc0iq8u1-kc0isx9s",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": [
+ "ORIGINEX1",
+ "ORIGINEX2",
+ "ORIGINEX3",
+ "ORIGINEX4"
+ ],
+ "responses": [
+ {
+ "id": "kc0iq8u1-QOP-khq4x0qm",
+ "label": "\" vendeurs français\"",
+ "response": { "name": "ORIGINEX1" }
+ },
+
+ {
+ "id": "kc0iq8u1-QOP-khq4v3u6",
+ "label": "\" vendeurs d’autres pays de l’Union européenne\"",
+ "response": { "name": "ORIGINEX2" }
+ },
+
+ {
+ "id": "kc0iq8u1-QOP-khq597pe",
+ "label": "\" vendeurs du reste du monde\"",
+ "response": { "name": "ORIGINEX3" }
+ },
+
+ {
+ "id": "kc0iq8u1-QOP-khq54plz",
+ "label": "\" vendeurs dont vous ne connaissez pas le pays d’origine\"",
+ "response": { "name": "ORIGINEX4" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0jc05z",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "37",
+ "label": "\"Avez-vous acheté certains de ces produits auprès de particuliers sur Internet ou via une application(eBay, Facebook Marketplace, LeBonCoin, etc.)?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": ["PARTACHA"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "PARTACHA" }
+ },
+
+ {
+ "id": "kc0jcnvt",
+ "componentType": "CheckboxGroup",
+ "page": "38",
+ "label": "\"Au cours des trois derniers mois, hors usage professionnel, avez-vous souscrit à un abonnement ou téléchargésur Internet ou via une application …\"",
+ "declarations": [
+ {
+ "id": "kc0jcnvt-kc0j9km0",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "controls": [
+ {
+ "id": "kc0jcnvt-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(NUMACHAX8,integer) ='1' and (cast(NUMACHAX1,integer) ='1' or cast(NUMACHAX2,integer) ='1' or cast(NUMACHAX3,integer) ='1' or cast(NUMACHAX4,integer) ='1' or cast(NUMACHAX5,integer) ='1' or cast(NUMACHAX6,integer) ='1' or cast(NUMACHAX7,integer) ='1'))",
+ "errorMessage": "\"Votre réponse - « Aucun de ces produits » - est incompatible avec les autres réponses\"",
+ "bindingDependencies": [
+ "NUMACHAX8",
+ "NUMACHAX1",
+ "NUMACHAX2",
+ "NUMACHAX3",
+ "NUMACHAX4",
+ "NUMACHAX5",
+ "NUMACHAX6",
+ "NUMACHAX7"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": [
+ "NUMACHAX1",
+ "NUMACHAX2",
+ "NUMACHAX3",
+ "NUMACHAX4",
+ "NUMACHAX5",
+ "NUMACHAX6",
+ "NUMACHAX7",
+ "NUMACHAX8"
+ ],
+ "responses": [
+ {
+ "id": "kc0jcnvt-QOP-khq4xe5q",
+ "label": "\" De la musique (streaming ou téléchargements)\"",
+ "response": { "name": "NUMACHAX1" }
+ },
+
+ {
+ "id": "kc0jcnvt-QOP-khq54me1",
+ "label": "\" Des films ou séries (streaming ou téléchargements)\"",
+ "response": { "name": "NUMACHAX2" }
+ },
+
+ {
+ "id": "kc0jcnvt-QOP-khq4tfhu",
+ "label": "\" Des livres électroniques, des magazines ou des journaux en ligne\"",
+ "response": { "name": "NUMACHAX3" }
+ },
+
+ {
+ "id": "kc0jcnvt-QOP-khq4x1ha",
+ "label": "\" Des jeux (en ligne ou téléchargés, sur smartphones, tablettes, ordinateurs ou consoles)\"",
+ "response": { "name": "NUMACHAX4" }
+ },
+
+ {
+ "id": "kc0jcnvt-QOP-khq54y90",
+ "label": "\" Des logiciels téléchargés, y compris les mises à jour\"",
+ "response": { "name": "NUMACHAX5" }
+ },
+
+ {
+ "id": "kc0jcnvt-QOP-khq58ftq",
+ "label": "\" Des applications payantes liées à la santé ou à la forme physique \"",
+ "response": { "name": "NUMACHAX6" }
+ },
+
+ {
+ "id": "kc0jcnvt-QOP-khq4z1ux",
+ "label": "\" D’autres applications payantes (apprentissage de langues, voyages, météo, etc.)\"",
+ "response": { "name": "NUMACHAX7" }
+ },
+
+ {
+ "id": "kc0jcnvt-QOP-khq4wgpm",
+ "label": "\" Aucun de ces produits\"",
+ "response": { "name": "NUMACHAX8" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0ix4pz",
+ "componentType": "CheckboxGroup",
+ "page": "39",
+ "label": "\"Au cours des trois derniers mois, hors usage professionnel, avez-vous acheté sur un site Internet ou via une application…\"",
+ "declarations": [
+ {
+ "id": "kc0ix4pz-kc0jflg6",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "controls": [
+ {
+ "id": "kc0ix4pz-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(SERVACHAX6,integer) ='1' and ( cast(SERVACHAX1,integer) = '1' or cast(SERVACHAX2,integer) = '1' or cast(SERVACHAX3,integer) = '1' or cast(SERVACHAX4,integer) = '1' or cast(SERVACHAX5,integer) = '1' ))",
+ "errorMessage": "\"Votre réponse - « Aucun de ces produits » - est incompatible avec les autres réponses\"",
+ "bindingDependencies": [
+ "SERVACHAX6",
+ "SERVACHAX1",
+ "SERVACHAX2",
+ "SERVACHAX3",
+ "SERVACHAX4",
+ "SERVACHAX5"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": [
+ "SERVACHAX1",
+ "SERVACHAX2",
+ "SERVACHAX3",
+ "SERVACHAX4",
+ "SERVACHAX5",
+ "SERVACHAX6"
+ ],
+ "responses": [
+ {
+ "id": "kc0ix4pz-QOP-khq50ut3",
+ "label": "\" Des billets pour des manifestations sportives\"",
+ "response": { "name": "SERVACHAX1" }
+ },
+
+ {
+ "id": "kc0ix4pz-QOP-khq56b2u",
+ "label": "\" Des billets pour des manifestations culturelles ou autres (cinéma, concerts, foires, etc.)\"",
+ "response": { "name": "SERVACHAX2" }
+ },
+
+ {
+ "id": "kc0ix4pz-QOP-khq51byi",
+ "label": "\" Un abonnement à Internet ou de téléphonie mobile\"",
+ "response": { "name": "SERVACHAX3" }
+ },
+
+ {
+ "id": "kc0ix4pz-QOP-khq56zrj",
+ "label": "\" Une souscription à un contrat d’abonnement en électricité, eau ou chauffage, services d’élimination de déchets ou services similaires\"",
+ "response": { "name": "SERVACHAX4" }
+ },
+
+ {
+ "id": "kc0ix4pz-QOP-khq4ydl3",
+ "label": "\" Des services domestiques (ménage, garde d’enfants, bricolage ou jardinage) y compris proposés par des particuliers (Facebook Marketplace, LeBonCoin, Youpijob, etc.)\"",
+ "response": { "name": "SERVACHAX5" }
+ },
+
+ {
+ "id": "kc0ix4pz-QOP-khq5316r",
+ "label": "\" Aucun de ces produits\"",
+ "response": { "name": "SERVACHAX6" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0usjaw",
+ "componentType": "FilterDescription",
+ "page": "39",
+ "filterDescription": false,
+ "label": "\"Si vous avez acheté des service domestiques en ligne, passez à la question 8. Si non, passez à la question 9\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ }
+ },
+
+ {
+ "id": "kc0j3oqg",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "40",
+ "label": "\"Avez-vous fait appel à des particuliers pour obtenir l’un des services domestiques mentionnés (sur Facebook Marketplace, LeBonCoin, Youpijob, etc.) ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\")) and (not(cast(SERVACHAX5,integer) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "SERVACHAX5"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": ["PARTJOB"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "PARTJOB" }
+ },
+
+ {
+ "id": "kc0jjdn7",
+ "componentType": "CheckboxGroup",
+ "page": "41",
+ "label": "\"Au cours des trois derniers mois, à titre privé, avez-vous fait appel à un service de transport via un site Web ou une application ?\"",
+ "declarations": [
+ {
+ "id": "kc0jjdn7-kc0j5qds",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "controls": [
+ {
+ "id": "kc0jjdn7-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(SHARTX3,integer) = '1' and ( cast(SHARTX1,integer) = '1' or cast(SHARTX2,integer) = '1' ))",
+ "errorMessage": "\"Votre réponse - « Non » - est incompatible avec les autres réponses\"",
+ "bindingDependencies": ["SHARTX3", "SHARTX1", "SHARTX2"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": ["SHARTX1", "SHARTX2", "SHARTX3"],
+ "responses": [
+ {
+ "id": "kc0jjdn7-QOP-khq52jfa",
+ "label": "\" Oui, auprès d’une entreprise de transport telle que la compagnie de bus local, train, avion, taxi (SNCF, Uber, etc.)\"",
+ "response": { "name": "SHARTX1" }
+ },
+
+ {
+ "id": "kc0jjdn7-QOP-khq597zi",
+ "label": "\" Oui, auprès d’un particulier (Blablacar, etc.)\"",
+ "response": { "name": "SHARTX2" }
+ },
+
+ {
+ "id": "kc0jjdn7-QOP-khq58guo",
+ "label": "\" Non\"",
+ "response": { "name": "SHARTX3" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0ja8z6",
+ "componentType": "CheckboxGroup",
+ "page": "42",
+ "label": "\"Au cours des trois derniers mois, à titre privé, avez-vous loué un logement via un site web ou une application ?\"",
+ "declarations": [
+ {
+ "id": "kc0ja8z6-kc0jfsm5",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles \""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "controls": [
+ {
+ "id": "kc0ja8z6-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(SHARAX3,integer) ='1' and ( cast(SHARAX2,integer) = '1' or cast(SHARAX2,integer) = '1' ))",
+ "errorMessage": "\"Votre réponse - « Non » - est incompatible avec les autres réponses\"",
+ "bindingDependencies": ["SHARAX3", "SHARAX2"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": ["SHARAX1", "SHARAX2", "SHARAX3"],
+ "responses": [
+ {
+ "id": "kc0ja8z6-QOP-khq4xw88",
+ "label": "\" Oui, auprès d’entreprises telles que les hôtels ou les agences de voyages \"",
+ "response": { "name": "SHARAX1" }
+ },
+
+ {
+ "id": "kc0ja8z6-QOP-khq54kkk",
+ "label": "\" Oui, auprès d’un particulier (Airbnb, PAP vacances, etc.)\"",
+ "response": { "name": "SHARAX2" }
+ },
+
+ {
+ "id": "kc0ja8z6-QOP-khq5a0p3",
+ "label": "\" Non\"",
+ "response": { "name": "SHARAX3" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0jlws6",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "43",
+ "label": "\"Au cours des trois derniers mois, combien de fois avez-vous acheté des produits ou des services à titre privé sur Internet ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": ["NBCOM"],
+ "options": [
+ { "value": "1", "label": "\" 1 à 2 fois\"" },
+
+ { "value": "2", "label": "\" 3 à 5 fois\"" },
+
+ { "value": "3", "label": "\" 6 à 10 fois\"" },
+
+ { "value": "4", "label": "\" Plus de 10 fois\"" }
+ ],
+ "response": { "name": "NBCOM" }
+ },
+
+ {
+ "id": "kc0jemvn",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "44",
+ "label": "\"Au cours des trois derniers mois, à combien estimez-vous la somme de vos achats réalisés via un site Internet ou une application à titre privé ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": ["SOMCOM"],
+ "options": [
+ { "value": "1", "label": "\" Moins de 50 € \"" },
+
+ { "value": "2", "label": "\" De 50 à moins de 100 €\"" },
+
+ { "value": "3", "label": "\" De 100 à moins de 300 €\"" },
+
+ { "value": "4", "label": "\" De 300 à moins de 500 €\"" },
+
+ { "value": "5", "label": "\" De 500 à moins de 700 €\"" },
+
+ { "value": "6", "label": "\" De 700 à moins de 1 000 €\"" },
+
+ { "value": "7", "label": "\" 1 000 € ou plus\"" }
+ ],
+ "response": { "name": "SOMCOM" }
+ },
+
+ {
+ "id": "kc0jhlsv",
+ "componentType": "CheckboxGroup",
+ "page": "45",
+ "label": "\"Au cours des trois derniers mois, lors de vos achats ou commandes sur Internet ou via une application, avez-vous rencontré les problèmes suivants :\"",
+ "declarations": [
+ {
+ "id": "kc0jhlsv-kc0jem2e",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles \""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "controls": [
+ {
+ "id": "kc0jhlsv-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(PBACHAX11,integer) = '1' and ( cast(PBACHAX1,integer) = '1' or cast(PBACHAX2,integer) = '1' or cast(PBACHAX3,integer) = '1' or cast(PBACHAX4,integer) = '1' or cast(PBACHAX5,integer) = '1' or cast(PBACHAX6,integer) = '1' or cast(PBACHAX7,integer) = '1' or cast(PBACHAX8,integer) = '1' or cast(PBACHAX9,integer) = '1' or cast(PBACHAX10,integer) = '1' ))",
+ "errorMessage": "\"Votre réponse - « Vous n’avez pas rencontré de problème » - est incompatible avec les autres réponses\"",
+ "bindingDependencies": [
+ "PBACHAX11",
+ "PBACHAX1",
+ "PBACHAX2",
+ "PBACHAX3",
+ "PBACHAX4",
+ "PBACHAX5",
+ "PBACHAX6",
+ "PBACHAX7",
+ "PBACHAX8",
+ "PBACHAX9",
+ "PBACHAX10"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": [
+ "PBACHAX1",
+ "PBACHAX2",
+ "PBACHAX3",
+ "PBACHAX4",
+ "PBACHAX5",
+ "PBACHAX6",
+ "PBACHAX7",
+ "PBACHAX8",
+ "PBACHAX9",
+ "PBACHAX10",
+ "PBACHAX11"
+ ],
+ "responses": [
+ {
+ "id": "kc0jhlsv-QOP-khq5224w",
+ "label": "\" Le site web était difficile à utiliser ou fonctionnait de manière insatisfaisante (trop compliqué, confus, fonctionnait mal techniquement, etc.).\"",
+ "response": { "name": "PBACHAX1" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq5bihr",
+ "label": "\" Des difficultés à trouver les informations concernant les conditions générales de vente\"",
+ "response": { "name": "PBACHAX2" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq4r3h5",
+ "label": "\" Une livraison plus longue que prévue\"",
+ "response": { "name": "PBACHAX3" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq533x6",
+ "label": "\" Un coût plus élevé que prévu (frais de livraison inattendus, frais de garantie injustifiés, etc.)\"",
+ "response": { "name": "PBACHAX4" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq4yvh1",
+ "label": "\" Une erreur sur le produit ou service, ou un produit endommagé\"",
+ "response": { "name": "PBACHAX5" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq55a1x",
+ "label": "\" Une fraude (produit non reçu, utilisation abusive des données de votre carte bancaire, etc.)\"",
+ "response": { "name": "PBACHAX6" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq4wjv0",
+ "label": "\" Des réclamations et recours difficiles ou une absence de réponse satisfaisante après recours\"",
+ "response": { "name": "PBACHAX7" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq4v438",
+ "label": "\" Un fournisseur étranger ne vendant pas en France\"",
+ "response": { "name": "PBACHAX8" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq51san",
+ "label": "\" Une difficulté sur la conservation de vos données personnelles\"",
+ "response": { "name": "PBACHAX9" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq5515i",
+ "label": "\" Un autre problème\"",
+ "response": { "name": "PBACHAX10" }
+ },
+
+ {
+ "id": "kc0jhlsv-QOP-khq5a05m",
+ "label": "\" Vous n’avez pas rencontré de problème\"",
+ "response": { "name": "PBACHAX11" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0juxed",
+ "componentType": "CheckboxGroup",
+ "page": "46",
+ "label": "\"Au cours des trois derniers mois, dans un but privé, avez-vous effectué les activités financières suivantes sur un site Internet ou une application :\"",
+ "declarations": [
+ {
+ "id": "kc0juxed-kc0jlwsz",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8"
+ ]
+ },
+ "controls": [
+ {
+ "id": "kc0juxed-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(FINANCEX4,integer) = '1' and ( cast(FINANCEX1,integer) = '1' or cast(FINANCEX2,integer) = '1' or cast(FINANCEX3,integer) = '1' ))",
+ "errorMessage": "\"Votre réponse - « Aucune de ces activités financières » - est incompatible avec les autres réponses\"",
+ "bindingDependencies": [
+ "FINANCEX4",
+ "FINANCEX1",
+ "FINANCEX2",
+ "FINANCEX3"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": [
+ "FINANCEX1",
+ "FINANCEX2",
+ "FINANCEX3",
+ "FINANCEX4"
+ ],
+ "responses": [
+ {
+ "id": "kc0juxed-QOP-khq4rvt5",
+ "label": "\" Souscrire à une assurance (y compris une assurance voyage lors de l’achat d’un billet d’avion).\"",
+ "response": { "name": "FINANCEX1" }
+ },
+
+ {
+ "id": "kc0juxed-QOP-khq53jiw",
+ "label": "\" Contracter un prêt, une hypothèque ou un emprunt auprès d’une banque ou d’un autre fournisseur financier\"",
+ "response": { "name": "FINANCEX2" }
+ },
+
+ {
+ "id": "kc0juxed-QOP-khq4uitz",
+ "label": "\" Acheter ou vendre des actions, obligations, parts de fonds de placement ou d’autres actifs financiers\"",
+ "response": { "name": "FINANCEX3" }
+ },
+
+ {
+ "id": "kc0juxed-QOP-khq4wmud",
+ "label": "\" Aucune de ces activités financières\"",
+ "response": { "name": "FINANCEX4" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc1xdifh",
+ "componentType": "FilterDescription",
+ "page": "46",
+ "filterDescription": false,
+ "label": "\"Si vous avez acheté des produits ou services sur Internet au cours des trois derniers mois, passez au module VI\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ }
+ },
+
+ {
+ "id": "kc1x9j53",
+ "componentType": "FilterDescription",
+ "page": "46",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas accédé à Internet au cours des trois derniers mois, passez au module VIII\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ }
+ },
+
+ {
+ "id": "kc0jvlb9",
+ "componentType": "CheckboxGroup",
+ "page": "47",
+ "label": "\"Pourquoi n’avez-vous rien acheté via un site web ou application au cours des trois derniers mois ?\"",
+ "declarations": [
+ {
+ "id": "kc0jvlb9-kc0jov5x",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )) or (cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ },
+ "bindingDependencies": [
+ "RAISACHAX1",
+ "RAISACHAX2",
+ "RAISACHAX3",
+ "RAISACHAX4",
+ "RAISACHAX5",
+ "RAISACHAX6",
+ "RAISACHAX7",
+ "RAISACHAX8",
+ "RAISACHAX9"
+ ],
+ "responses": [
+ {
+ "id": "kc0jvlb9-QOP-khq54aec",
+ "label": "\" Parce que vous préférez vous déplacer dans les magasins pour voir les produits, par fidélité ou par habitude\"",
+ "response": { "name": "RAISACHAX1" }
+ },
+
+ {
+ "id": "kc0jvlb9-QOP-khq4wxh0",
+ "label": "\" Parce que vous avez des difficultés à commander en ligne (vous pensez ne pas avoir les compétences)\"",
+ "response": { "name": "RAISACHAX2" }
+ },
+
+ {
+ "id": "kc0jvlb9-QOP-khq4x7i3",
+ "label": "\" À cause du coût de la livraison des produits\"",
+ "response": { "name": "RAISACHAX3" }
+ },
+
+ {
+ "id": "kc0jvlb9-QOP-khq59s68",
+ "label": "\" Parce que vous êtes préoccupé(e) quant à la fiabilité ou la rapidité de la livraison des produits\"",
+ "response": { "name": "RAISACHAX4" }
+ },
+
+ {
+ "id": "kc0jvlb9-QOP-khq4qoq0",
+ "label": "\"Pour des raisons de sécurité ou de confidentialité\"",
+ "response": { "name": "RAISACHAX5" }
+ },
+
+ {
+ "id": "kc0jvlb9-QOP-khq4vzzd",
+ "label": "\"À cause d’éventuels problèmes liés au retour des produits (recours, remboursement, etc.)\"",
+ "response": { "name": "RAISACHAX6" }
+ },
+
+ {
+ "id": "kc0jvlb9-QOP-khq4tx87",
+ "label": "\" Car le fournisseur étranger ne vendait pas en France\"",
+ "response": { "name": "RAISACHAX7" }
+ },
+
+ {
+ "id": "kc0jvlb9-QOP-khq56a6q",
+ "label": "\" Parce que je n’en avais pas besoin\"",
+ "response": { "name": "RAISACHAX8" }
+ },
+
+ {
+ "id": "kc0jvlb9-QOP-khq583m7",
+ "label": "\" Pour une autre raison\"",
+ "response": { "name": "RAISACHAX9" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc1x1reg",
+ "componentType": "FilterDescription",
+ "page": "47",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas accédé à Internet au cours des trois derniers mois, passez au module VIII\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )) or (cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0ir8tk",
+ "page": "32",
+ "label": "\"V - Vos habitudes de consommation sur Internet \""
+ }
+ }
+ },
+
+ {
+ "id": "kc0k0bku",
+ "componentType": "Sequence",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\"",
+ "declarations": [
+ {
+ "id": "kc0k0bku-kc0jvh7x",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Nous arrivons aux questions sur vos compétences liées à l’informatique et aux technologies mobiles. Les questions concernent les activités menées à des fins professionnelles, privées ou de formation, via n’importe quel appareil (par exemple, ordinateur de bureau, ordinateur portable, tablette, téléphone mobile ou Smartphone, appareils intelligents, etc.)\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0jw8fh",
+ "componentType": "CheckboxGroup",
+ "page": "49",
+ "label": "\"Concernant vos compétences en informatique, au cours des trois derniers mois, avez-vous déjà …\"",
+ "declarations": [
+ {
+ "id": "kc0jw8fh-kc0k5m8e",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "controls": [
+ {
+ "id": "kc0jw8fh-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(COMPINFX1,integer) = '' and cast(COMPINFX2,integer) = '' and cast(COMPINFX3,integer) = '' and cast(COMPINFX4,integer) = '' and cast(COMPINFX5,integer) = '' and cast(COMPINFX6,integer) = '' and cast(COMPINFX7,integer) = '' and cast(COMPINFX8,integer) = '' and cast(COMPINFX9,integer) = '')",
+ "errorMessage": "\"Au moins une modalité doit être cochée à cette question\"",
+ "bindingDependencies": [
+ "COMPINFX1",
+ "COMPINFX2",
+ "COMPINFX3",
+ "COMPINFX4",
+ "COMPINFX5",
+ "COMPINFX6",
+ "COMPINFX7",
+ "COMPINFX8",
+ "COMPINFX9"
+ ]
+ },
+
+ {
+ "id": "kc0jw8fh-CI-1",
+ "criticality": "WARN",
+ "control": "not(cast(COMPINFX9,integer) = '1' and ( cast(COMPINFX2,integer) = '1' or cast(COMPINFX3,integer) = '1' or cast(COMPINFX4,integer) = '1' or cast(COMPINFX5,integer) = '1' or cast(COMPINFX6,integer) = '1' or cast(COMPINFX7,integer) = '1' or cast(COMPINFX8,integer) = '1' or cast(COMPINFX1,integer) = '1' ))",
+ "errorMessage": "\"Votre réponse « Aucune de ces compétences » est incompatible avec les autres réponses\"",
+ "bindingDependencies": [
+ "COMPINFX9",
+ "COMPINFX2",
+ "COMPINFX3",
+ "COMPINFX4",
+ "COMPINFX5",
+ "COMPINFX6",
+ "COMPINFX7",
+ "COMPINFX8",
+ "COMPINFX1"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ },
+ "bindingDependencies": [
+ "COMPINFX1",
+ "COMPINFX2",
+ "COMPINFX3",
+ "COMPINFX4",
+ "COMPINFX5",
+ "COMPINFX6",
+ "COMPINFX7",
+ "COMPINFX8",
+ "COMPINFX9"
+ ],
+ "responses": [
+ {
+ "id": "kc0jw8fh-QOP-khq4y1pm",
+ "label": "\"copié ou déplacé des fichiers (des documents, des données, images, vidéo) entre des dossiers, des appareils (par exemple par e-mail, Messenger, WhatsApp, USB, câble) ou sur le cloud\"",
+ "response": { "name": "COMPINFX1" }
+ },
+
+ {
+ "id": "kc0jw8fh-QOP-khq55b6h",
+ "label": "\"téléchargé ou installé des logiciels ou des applications\"",
+ "response": { "name": "COMPINFX2" }
+ },
+
+ {
+ "id": "kc0jw8fh-QOP-khq4r02c",
+ "label": "\" modifié des paramètres d’un logiciel, d’une application ou d’un appareil (par exemple le réglage de la langue, des couleurs, du contraste, de la taille du texte, barres d’outils/menu)\"",
+ "response": { "name": "COMPINFX3" }
+ },
+
+ {
+ "id": "kc0jw8fh-QOP-khq4sat8",
+ "label": "\" utilisé un logiciel de traitement de texte (Word, Writer, etc.)\"",
+ "response": { "name": "COMPINFX4" }
+ },
+
+ {
+ "id": "kc0jw8fh-QOP-khq4r9we",
+ "label": "\" créé des fichiers (document, image, vidéo, etc.) intégrant plusieurs éléments comme du texte, une image, un tableau, un graphique, une animation, un son, etc.\"",
+ "response": { "name": "COMPINFX5" }
+ },
+
+ {
+ "id": "kc0jw8fh-QOP-khq55kkp",
+ "label": "\" utilisé un tableur (Excel, Calc, etc.)\"",
+ "response": { "name": "COMPINFX6" }
+ },
+
+ {
+ "id": "kc0jw8fh-QOP-khq5annb",
+ "label": "\" modifié des photos, des fichiers vidéos ou audios\"",
+ "response": { "name": "COMPINFX7" }
+ },
+
+ {
+ "id": "kc0jw8fh-QOP-khq57qhv",
+ "label": "\" écrit un programme en langage informatique\"",
+ "response": { "name": "COMPINFX8" }
+ },
+
+ {
+ "id": "kc0jw8fh-QOP-khq5aew0",
+ "label": "\" Aucune de ces compétences\"",
+ "response": { "name": "COMPINFX9" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc1xlfaa",
+ "componentType": "FilterDescription",
+ "page": "49",
+ "filterDescription": false,
+ "label": "\"SI vous n’avez pas utilisé de tableur, passez à la question \"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0jpxlq",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "50",
+ "label": "\"Vous vous êtes servi(e) d’un tableur au cours des trois derniers mois. Avez-vous utilisé des fonctionnalités avancées (fonctions, formules, macros, Visual Basic) pour organiser, analyser, structurer ou modifier les données ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(COMPINFX6,integer) = \"\" ))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "COMPINFX6"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ },
+ "bindingDependencies": ["EXCEL"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "EXCEL" }
+ },
+
+ {
+ "id": "kc0k8y7u",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "51",
+ "label": "\"Avez-vous vu des informations ou du contenu (par exemple, des vidéos, des images) que vous considérez comme faux ou peu fiables sur des sites d’information ou des médias sociaux (par exemple, Facebook, Instagram, YouTube, Twitter) au cours des trois derniers mois ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ },
+ "bindingDependencies": ["INFOX"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "INFOX" }
+ },
+
+ {
+ "id": "kc1xzs94",
+ "componentType": "FilterDescription",
+ "page": "51",
+ "filterDescription": false,
+ "label": "\"Si non, passez au module VII\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0k84by",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "52",
+ "label": "\"Avez-vous vérifié la fiabilité de ces informations ou contenus ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(INFOX,string) = \"2\" or cast(INFOX,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "INFOX"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ },
+ "bindingDependencies": ["VERIFINFO"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "VERIFINFO" }
+ },
+
+ {
+ "id": "kc1y4dy1",
+ "componentType": "FilterDescription",
+ "page": "52",
+ "filterDescription": false,
+ "label": "\"Si non, passez à la question 6\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(INFOX,string) = \"2\" or cast(INFOX,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "INFOX"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0jycut",
+ "componentType": "CheckboxGroup",
+ "page": "53",
+ "label": "\"Comment avez-vous vérifié la véracité de ces informations ou contenus ?\"",
+ "declarations": [
+ {
+ "id": "kc0jycut-kc0kbifu",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(INFOX,string) = \"2\" or cast(INFOX,string) = \"\")) and (not(cast(VERIFINFO,string) = \"2\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "INFOX",
+ "VERIFINFO"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ },
+ "bindingDependencies": ["MOYINFO1", "MOYINFO2", "MOYINFO3", "MOYINFO4"],
+ "responses": [
+ {
+ "id": "kc0jycut-QOP-khq5alud",
+ "label": "\" En vérifiant les sources ou en trouvant d’autres informations sur Internet (par exemple, d’autres sites d’information, Wikipédia, etc.)\"",
+ "response": { "name": "MOYINFO1" }
+ },
+
+ {
+ "id": "kc0jycut-QOP-khq4ryn1",
+ "label": "\" En suivant ou participant à des discussions sur Internet relatives à ces informations.\"",
+ "response": { "name": "MOYINFO2" }
+ },
+
+ {
+ "id": "kc0jycut-QOP-khq4y5jv",
+ "label": "\" En discutant des informations hors Internet avec d’autres personnes ou en utilisant des sources qui ne sont pas sur Internet\"",
+ "response": { "name": "MOYINFO3" }
+ },
+
+ {
+ "id": "kc0jycut-QOP-khq4v59a",
+ "label": "\" Par un autre moyen\"",
+ "response": { "name": "MOYINFO4" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc1ydrr1",
+ "componentType": "FilterDescription",
+ "page": "53",
+ "filterDescription": false,
+ "label": "\"Si vous avez vérifié la véracité des informations, passez au module VII\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(INFOX,string) = \"2\" or cast(INFOX,string) = \"\")) and (not(cast(VERIFINFO,string) = \"2\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "INFOX",
+ "VERIFINFO"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0k4daj",
+ "componentType": "CheckboxGroup",
+ "page": "54",
+ "label": "\"Pourquoi n’avez-vous pas vérifié la véracité de ces informations ou contenus ?\"",
+ "declarations": [
+ {
+ "id": "kc0k4daj-kc0kdmlx",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(INFOX,string) = \"2\" or cast(INFOX,string) = \"\")) and (not((cast(VERIFINFO,string) = \"1\" ) and not ((cast(VERIFINFO,string) = \"2\"))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "INFOX",
+ "VERIFINFO"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k0bku",
+ "page": "48",
+ "label": "\"VI - Vos compétences en informatique\""
+ }
+ },
+ "bindingDependencies": ["RAISINFO1", "RAISINFO2", "RAISINFO3"],
+ "responses": [
+ {
+ "id": "kc0k4daj-QOP-khq554tf",
+ "label": "\" Vous saviez déjà que l’information, le contenu ou la source n’étaient pas fiables\"",
+ "response": { "name": "RAISINFO1" }
+ },
+
+ {
+ "id": "kc0k4daj-QOP-khq57m9j",
+ "label": "\" Vous manquez de compétences ou de connaissances (par exemple, vous ne saviez pas comment vérifier les informations sur Internet ou c’était trop compliqué à faire).\"",
+ "response": { "name": "RAISINFO2" }
+ },
+
+ {
+ "id": "kc0k4daj-QOP-khq52q6s",
+ "label": "\" Pour une autre raison\"",
+ "response": { "name": "RAISINFO3" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0k7y1b",
+ "componentType": "Sequence",
+ "page": "55",
+ "label": "\"VII - Confidentialité et protection de la vie privée\"",
+ "declarations": [
+ {
+ "id": "kc0k7y1b-kc0k1zsr",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Voici à présent des questions concernant la mise à disposition et la protection des données personnelles en lien avec vos activités sur Internet.\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k7y1b",
+ "page": "55",
+ "label": "\"VII - Confidentialité et protection de la vie privée\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0kbnid",
+ "componentType": "CheckboxGroup",
+ "page": "56",
+ "label": "\"Au cours des trois derniers mois, avez-vous effectué une ou plusieurs des actions suivantes pour gérer l’accès à vos données personnelles (nom, date de naissance, numéro de carte d’identité, coordonnées, numéro de carte de crédit, photos, situation géographique, etc.) sur Internet ?\"",
+ "declarations": [
+ {
+ "id": "kc0kbnid-kc0kk90z",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "controls": [
+ {
+ "id": "kc0kbnid-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(ACCESX7,integer) = '1' and ( cast(ACCESX1,integer) = '1' or cast(ACCESX2,integer) = '1' or cast(ACCESX3,integer) = '1' or cast(ACCESX4,integer) = '1' or cast(ACCESX5,integer) = '1' or cast(ACCESX6,integer) = '1' ))",
+ "errorMessage": "\"Votre réponse « Aucune de ces actions» est incompatible avec les autres réponses\"",
+ "bindingDependencies": [
+ "ACCESX7",
+ "ACCESX1",
+ "ACCESX2",
+ "ACCESX3",
+ "ACCESX4",
+ "ACCESX5",
+ "ACCESX6"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k7y1b",
+ "page": "55",
+ "label": "\"VII - Confidentialité et protection de la vie privée\""
+ }
+ },
+ "bindingDependencies": [
+ "ACCESX1",
+ "ACCESX2",
+ "ACCESX3",
+ "ACCESX4",
+ "ACCESX5",
+ "ACCESX6",
+ "ACCESX7"
+ ],
+ "responses": [
+ {
+ "id": "kc0kbnid-QOP-khq4ufrb",
+ "label": "\" Lire la politique de confidentialité du site avant de fournir des informations personnelles\"",
+ "response": { "name": "ACCESX1" }
+ },
+
+ {
+ "id": "kc0kbnid-QOP-khq51es4",
+ "label": "\" Restreindre ou refuser l’accès à votre position géographique\"",
+ "response": { "name": "ACCESX2" }
+ },
+
+ {
+ "id": "kc0kbnid-QOP-khq56c6b",
+ "label": "\" Limiter l’accès au profil ou aux contenus que vous avez postés sur les réseaux sociaux ou au stockage en ligne partagé\"",
+ "response": { "name": "ACCESX3" }
+ },
+
+ {
+ "id": "kc0kbnid-QOP-khq4zbfe",
+ "label": "\" Refuser l’usage de données personnelles dans un but publicitaire\"",
+ "response": { "name": "ACCESX4" }
+ },
+
+ {
+ "id": "kc0kbnid-QOP-khq55c3f",
+ "label": "\" Vérifier que le site Internet sur lequel vous avez fourni des données personnelles était sécurisé (site commençant par « https », certificats ou logos de sécurité)\"",
+ "response": { "name": "ACCESX5" }
+ },
+
+ {
+ "id": "kc0kbnid-QOP-khq4z37y",
+ "label": "\" Demander la modification ou la suppression des données personnelles auprès d’un administrateur ou fournisseur d’accès\"",
+ "response": { "name": "ACCESX6" }
+ },
+
+ {
+ "id": "kc0kbnid-QOP-khq53i5b",
+ "label": "\" Aucune de ces actions\"",
+ "response": { "name": "ACCESX7" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0mdacx",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "57",
+ "label": "\"Saviez-vous que les cookies peuvent être utilisés pour connaître les centres d’intérêt des internautes afin de leur envoyer des publicités ciblées ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k7y1b",
+ "page": "55",
+ "label": "\"VII - Confidentialité et protection de la vie privée\""
+ }
+ },
+ "bindingDependencies": ["SECOOK"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "SECOOK" }
+ },
+
+ {
+ "id": "kc0moab7",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "58",
+ "label": "\"Avez-vous changé les paramètres de votre navigateur Internet afin d’interdire ou de limiter les cookies sur l’un de vos appareils ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k7y1b",
+ "page": "55",
+ "label": "\"VII - Confidentialité et protection de la vie privée\""
+ }
+ },
+ "bindingDependencies": ["SECUNAV"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "SECUNAV" }
+ },
+
+ {
+ "id": "kc0mgk5t",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "59",
+ "label": "\"Êtes-vous préoccupé(e) par le fait que vos activités en ligne soient enregistrées pour vous proposer des publicités ciblées ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k7y1b",
+ "page": "55",
+ "label": "\"VII - Confidentialité et protection de la vie privée\""
+ }
+ },
+ "bindingDependencies": ["PREOCC"],
+ "options": [
+ { "value": "1", "label": "\" Oui, très préoccupé(e)\"" },
+
+ { "value": "2", "label": "\" Oui, en partie préoccupé(e)\"" },
+
+ { "value": "3", "label": "\" Non, je ne suis pas préoccupé(e)\"" }
+ ],
+ "response": { "name": "PREOCC" }
+ },
+
+ {
+ "id": "kc0mr69i",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "60",
+ "label": "\"Utilisez-vous un logiciel de protection contre le tracking (logiciel qui limite la capacité à suivre vos actions sur Internet) sur l’un de vos appareils ?\"",
+ "conditionFilter": {
+ "value": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0k7y1b",
+ "page": "55",
+ "label": "\"VII - Confidentialité et protection de la vie privée\""
+ }
+ },
+ "bindingDependencies": ["TRACKING"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "TRACKING" }
+ },
+
+ {
+ "id": "kc0mpozo",
+ "componentType": "Sequence",
+ "page": "61",
+ "label": "\"VIII - Votre utilisation du téléphone\"",
+ "declarations": [
+ {
+ "id": "kc0mpozo-kc0mf1y0",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Poursuivons par des questions concernant l’usage du téléphone fixe et mobile\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0mpozo",
+ "page": "61",
+ "label": "\"VIII - Votre utilisation du téléphone\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0mpb1o",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "62",
+ "label": "\"De combien de numéros de téléphone fixe disposez-vous dans votre ménage(numéros commençant par 01 à 05 ou par 09)?\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0mpozo",
+ "page": "61",
+ "label": "\"VIII - Votre utilisation du téléphone\""
+ }
+ },
+ "bindingDependencies": ["NUMEROS"],
+ "options": [
+ { "value": "1", "label": "\" Aucun\"" },
+
+ { "value": "2", "label": "\" Un numéro \"" },
+
+ { "value": "3", "label": "\" Deux numéros\"" },
+
+ { "value": "4", "label": "\"Trois numéros ou plus\"" }
+ ],
+ "response": { "name": "NUMEROS" }
+ },
+
+ {
+ "id": "kc1y4a2a",
+ "componentType": "FilterDescription",
+ "page": "62",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez pas de numéro de téléphone fixe, passez à la question 3\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0mpozo",
+ "page": "61",
+ "label": "\"VIII - Votre utilisation du téléphone\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0n0vfa",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "63",
+ "label": "\"Décrochez-vous ou une personne de votre ménage décroche-t-elle lorsque votre téléphone fixe sonne ?\"",
+ "conditionFilter": {
+ "value": "(not(cast(NUMEROS,string) = \"1\" or cast(NUMEROS,string) = \"\" ))",
+ "bindingDependencies": ["NUMEROS"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0mpozo",
+ "page": "61",
+ "label": "\"VIII - Votre utilisation du téléphone\""
+ }
+ },
+ "bindingDependencies": ["DECROCHEF"],
+ "options": [
+ {
+ "value": "1",
+ "label": "\" Oui, mais seulement lorsque vous connaissez le numéro qui essaie de vous joindre\""
+ },
+
+ {
+ "value": "2",
+ "label": "\" Oui, sans vous soucier du numéro qui essaie de vous joindre\""
+ },
+
+ { "value": "3", "label": "\" Non, jamais\"" },
+
+ { "value": "4", "label": "\" Non, il ne sonne jamais\"" }
+ ],
+ "response": { "name": "DECROCHEF" }
+ },
+
+ {
+ "id": "kc0mzowl",
+ "componentType": "CheckboxGroup",
+ "page": "64",
+ "label": "\"Pour votre usage privé, utilisez-vous ?\"",
+ "declarations": [
+ {
+ "id": "kc0mzowl-kc0n7j03",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "controls": [
+ {
+ "id": "kc0mzowl-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(SMARTPHONEX3,integer) = '1' and ( cast(SMARTPHONEX1,integer) = '1' or cast(SMARTPHONEX2,integer) = '1' ))",
+ "errorMessage": "\"Votre réponse - «Aucun de ces appareils» - est incompatible avec les autres réponses\"",
+ "bindingDependencies": [
+ "SMARTPHONEX3",
+ "SMARTPHONEX1",
+ "SMARTPHONEX2"
+ ]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0mpozo",
+ "page": "61",
+ "label": "\"VIII - Votre utilisation du téléphone\""
+ }
+ },
+ "bindingDependencies": ["SMARTPHONEX1", "SMARTPHONEX2", "SMARTPHONEX3"],
+ "responses": [
+ {
+ "id": "kc0mzowl-QOP-khq4ukie",
+ "label": "\" Un smartphone\"",
+ "response": { "name": "SMARTPHONEX1" }
+ },
+
+ {
+ "id": "kc0mzowl-QOP-khq5a1u9",
+ "label": "\" Un téléphone mobile hors smartphone\"",
+ "response": { "name": "SMARTPHONEX2" }
+ },
+
+ {
+ "id": "kc0mzowl-QOP-khq4xhom",
+ "label": "\" Aucun de ces appareils\"",
+ "response": { "name": "SMARTPHONEX3" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc1yr70e",
+ "componentType": "FilterDescription",
+ "page": "64",
+ "filterDescription": false,
+ "label": "\"SI vous n’avez pas de téléphone portable (smartphone ou non), passez au module IX\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0mpozo",
+ "page": "61",
+ "label": "\"VIII - Votre utilisation du téléphone\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0mw0hn",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "65",
+ "label": "\"Décrochez-vous lorsque votre téléphone mobile sonne ?\"",
+ "conditionFilter": {
+ "value": "(not(cast(SMARTPHONEX3,integer) = 1 or ( cast(SMARTPHONEX1,integer) = \"\" and cast(SMARTPHONEX2,integer) = \"\" and cast(SMARTPHONEX3,integer) = \"\" )))",
+ "bindingDependencies": ["SMARTPHONEX3", "SMARTPHONEX1", "SMARTPHONEX2"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0mpozo",
+ "page": "61",
+ "label": "\"VIII - Votre utilisation du téléphone\""
+ }
+ },
+ "bindingDependencies": ["DECROCHEM"],
+ "options": [
+ {
+ "value": "1",
+ "label": "\" Oui, mais seulement lorsque vous connaissez le numéro ou le nom de la personne qui essaie de vous joindre\""
+ },
+
+ {
+ "value": "2",
+ "label": "\" Oui, sans vous soucier du numéro qui essaie de vous joindre\""
+ },
+
+ { "value": "3", "label": "\" Non, jamais\"" },
+
+ { "value": "4", "label": "\" Non, il ne sonne jamais \"" }
+ ],
+ "response": { "name": "DECROCHEM" }
+ },
+
+ {
+ "id": "kebbns0s",
+ "componentType": "CheckboxGroup",
+ "page": "66",
+ "label": "\"Quel est votre opérateur mobile ?\"",
+ "declarations": [
+ {
+ "id": "kebbns0s-kispywjo",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Plusieurs réponses possibles\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(SMARTPHONEX3,integer) = 1 or ( cast(SMARTPHONEX1,integer) = \"\" and cast(SMARTPHONEX2,integer) = \"\" and cast(SMARTPHONEX3,integer) = \"\" )))",
+ "bindingDependencies": ["SMARTPHONEX3", "SMARTPHONEX1", "SMARTPHONEX2"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0mpozo",
+ "page": "61",
+ "label": "\"VIII - Votre utilisation du téléphone\""
+ }
+ },
+ "bindingDependencies": [
+ "OPERATEUR1",
+ "OPERATEUR2",
+ "OPERATEUR3",
+ "OPERATEUR4",
+ "OPERATEUR5"
+ ],
+ "responses": [
+ {
+ "id": "kebbns0s-QOP-khq52xzj",
+ "label": "\"Orange\"",
+ "response": { "name": "OPERATEUR1" }
+ },
+
+ {
+ "id": "kebbns0s-QOP-khq54j84",
+ "label": "\"SFR\"",
+ "response": { "name": "OPERATEUR2" }
+ },
+
+ {
+ "id": "kebbns0s-QOP-khq50ziy",
+ "label": "\"Bouygues telecom\"",
+ "response": { "name": "OPERATEUR3" }
+ },
+
+ {
+ "id": "kebbns0s-QOP-khq4x7y9",
+ "label": "\"Free\"",
+ "response": { "name": "OPERATEUR4" }
+ },
+
+ {
+ "id": "kebbns0s-QOP-khq4v50p",
+ "label": "\"Autre\"",
+ "response": { "name": "OPERATEUR5" }
+ }
+ ]
+ },
+
+ {
+ "id": "kc0n110n",
+ "componentType": "Sequence",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\"",
+ "declarations": [
+ {
+ "id": "kc0n110n-kc0mziaq",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Terminons par quelques questions plus générales sur votre situation professionnelle\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0n6snm",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "68",
+ "label": "\"Quelle est actuellement votre situation principale vis-à-vis du travail ?\"",
+ "declarations": [
+ {
+ "id": "kc0n6snm-kc0my1wg",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Une seule réponse possible\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["SITUA"],
+ "options": [
+ {
+ "value": "1",
+ "label": "\" Occupe un emploi (salarié(e) ou indépendant(e))\""
+ },
+
+ {
+ "value": "2",
+ "label": "\" En contrat d’apprentissage ou de professionnalisation\""
+ },
+
+ {
+ "value": "3",
+ "label": "\" Étudiant(e), élève en formation, en stage non rémunéré\""
+ },
+
+ {
+ "value": "4",
+ "label": "\" Chômeur(euse), inscrit(e) ou non à Pôle Emploi\""
+ },
+
+ {
+ "value": "5",
+ "label": "\" Retraité(e) ou préretraité(e), retiré(e) des affaires\""
+ },
+
+ {
+ "value": "6",
+ "label": "\" Au foyer, occupé(e) à des tâches d’entretien de la maison ou de garde d’enfants\""
+ },
+
+ {
+ "value": "7",
+ "label": "\" Au foyer, en incapacité permanente de travail\""
+ },
+
+ { "value": "8", "label": "\" En service civique\"" },
+
+ { "value": "9", "label": "\" Autre, inactif(ve)\"" }
+ ],
+ "response": { "name": "SITUA" }
+ },
+
+ {
+ "id": "kc0nbhww",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "69",
+ "label": "\"Dans votre \" || cast(cast(emploi,string),string) || \" ? \"",
+ "declarations": [
+ {
+ "id": "kc0nbhww-kc0nojf1",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\" Une seule réponse possible\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["emploi", "STATUT"],
+ "options": [
+ {
+ "value": "1",
+ "label": "\" Salarié(e) d’une entreprise privée ou d’une association\""
+ },
+
+ {
+ "value": "2",
+ "label": "\" Salarié(e) d’une entreprise publique (EDF, La Poste, SNCF, etc.) \""
+ },
+
+ { "value": "3", "label": "\" Salarié(e) de l’État\"" },
+
+ {
+ "value": "4",
+ "label": "\" Salarié(e) des collectivités territoriales \""
+ },
+
+ { "value": "5", "label": "\" Salarié(e) des hôpitaux publics \"" },
+
+ {
+ "value": "6",
+ "label": "\" Salarié(e) d’un organisme de Sécurité Sociale\""
+ },
+
+ { "value": "7", "label": "\" Salarié(e) d’un particulier \"" },
+
+ {
+ "value": "8",
+ "label": "\" Chef(fe) d’entreprise salarié(e), PDG, gérant(e) minoritaire, associé(e) \""
+ },
+
+ { "value": "9", "label": "\" Indépendant(e) ou à votre compte\"" },
+
+ {
+ "value": "10",
+ "label": "\" Vous travaill(i)ez pour un ou avec un membre de votre famille sans être salarié(e)\""
+ },
+
+ { "value": "11", "label": "\" Vous n’avez jamais travaillé.\"" }
+ ],
+ "response": { "name": "STATUT" }
+ },
+
+ {
+ "id": "kc1z5ca8",
+ "componentType": "FilterDescription",
+ "page": "69",
+ "filterDescription": false,
+ "label": "\"SI vous dirigez une entreprise, êtes indépendant ou si vous travaillez pour un membre de votre famille, passez à la question 6\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ }
+ },
+
+ {
+ "id": "kc1z8v6j",
+ "componentType": "FilterDescription",
+ "page": "69",
+ "filterDescription": false,
+ "label": "\"Si vous n’avez jamais travaillé, passez à la question 10\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0nuukd",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "70",
+ "label": "\"Votre tâche principale \" || cast(cast(emploi2,string),string) || \"-elle de superviser le travail d’autres salariés (hors apprentis et stagiaires) ?\"",
+ "conditionFilter": {
+ "value": "(not(cast(STATUT,string) = \"11\")) and (not(cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" or cast(STATUT,string) = \"10\" ))",
+ "bindingDependencies": ["STATUT"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["emploi2", "ENCADR"],
+ "options": [
+ { "value": "1", "label": "\"Oui\"" },
+
+ { "value": "2", "label": "\"Non\"" }
+ ],
+ "response": { "name": "ENCADR" }
+ },
+
+ {
+ "id": "kc0o78n2",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "71",
+ "label": "\"Quel \" || cast(cast(emploi2,string),string) || \" votre type d’emploi ? \"",
+ "conditionFilter": {
+ "value": "(not(cast(STATUT,string) = \"11\")) and (not(cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" or cast(STATUT,string) = \"10\" ))",
+ "bindingDependencies": ["STATUT"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["emploi2", "CONTRAT"],
+ "options": [
+ {
+ "value": "1",
+ "label": "\" Emploi sans limite de durée (CDI ou titulaire de la fonction publique)\""
+ },
+
+ {
+ "value": "2",
+ "label": "\" Emploi à durée déterminée (CDD, intérim, saisonnier, apprentissage, contrat d’avenir, etc.)\""
+ }
+ ],
+ "response": { "name": "CONTRAT" }
+ },
+
+ {
+ "id": "kc0nwzzp",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "72",
+ "label": "\"\" || cast(cast(emploi3,string),string) || \"-vous ? \"",
+ "conditionFilter": {
+ "value": "(not(cast(STATUT,string) = \"11\")) and (not(cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" or cast(STATUT,string) = \"10\" ))",
+ "bindingDependencies": ["STATUT"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["emploi3", "CLASSIF"],
+ "options": [
+ {
+ "value": "1",
+ "label": "\" Manœuvre ou ouvrier(ière) spécialisé(e)\""
+ },
+
+ {
+ "value": "2",
+ "label": "\" Ouvrier(ière) qualifié(e) ou ouvrier(ière) hautement qualifié(e) ou technicien(ne) d’atelier\""
+ },
+
+ { "value": "3", "label": "\" Technicien(ne)\"" },
+
+ { "value": "4", "label": "\" Personnel de catégorie B ou assimilé\"" },
+
+ {
+ "value": "5",
+ "label": "\"Agent de maîtrise, maîtrise administrative ou commerciale, VRP (non cadre)\""
+ },
+
+ { "value": "6", "label": "\" Personnel de catégorie A ou assimilé\"" },
+
+ {
+ "value": "7",
+ "label": "\" Ingénieur(e) ou cadre (à l’exception des directeurs généraux ou de ses adjoints directs)\""
+ },
+
+ { "value": "8", "label": "\" Personnel de catégorie C ou assimilé \"" },
+
+ {
+ "value": "9",
+ "label": "\" Employé(e) de bureau, de commerce, personnel de services\""
+ },
+
+ {
+ "value": "10",
+ "label": "\" Directeur(trice) général(e), adjoint(e) direct(e)\""
+ }
+ ],
+ "response": { "name": "CLASSIF" }
+ },
+
+ {
+ "id": "kc0o6lj8",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "73",
+ "label": "\"\" || cast(cast(emploi4,string),string) || \"-vous ?\"",
+ "conditionFilter": {
+ "value": "(not(cast(STATUT,string) = \"11\"))",
+ "bindingDependencies": ["STATUT"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["emploi4", "DUREE_EMP"],
+ "options": [
+ { "value": "1", "label": "\" À temps complet\"" },
+
+ {
+ "value": "2",
+ "label": "\" À temps partiel ou incomplet (mi-temps, 90%, 80%, etc.)\""
+ }
+ ],
+ "response": { "name": "DUREE_EMP" }
+ },
+
+ {
+ "id": "kc0ofjt7",
+ "componentType": "Input",
+ "mandatory": false,
+ "page": "74",
+ "maxLength": 50,
+ "label": "\"Quelle \" || cast(cast(emploi2,string),string) || \" \" || cast(cast(emploi5,string),string) || \" ?\"",
+ "conditionFilter": {
+ "value": "(not(cast(STATUT,string) = \"11\"))",
+ "bindingDependencies": ["STATUT"]
+ },
+ "controls": [
+ {
+ "id": "kc0ofjt7-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(PROFESSION,string) = '')",
+ "errorMessage": "\"Vous n’avez pas répondu à cette question. Si c’est un oubli, veuillez compléter votre réponse. \"",
+ "bindingDependencies": ["PROFESSION"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["emploi2", "emploi5", "PROFESSION"],
+ "response": { "name": "PROFESSION" }
+ },
+
+ {
+ "id": "kc0p4jga",
+ "componentType": "Input",
+ "mandatory": false,
+ "page": "75",
+ "maxLength": 50,
+ "label": "\"Quelle \" || cast(cast(emploi2,string),string) || \" l’activité de l’établissement ou du site \" || cast(cast(emploi6,string),string) || \" ?\"",
+ "conditionFilter": {
+ "value": "(not(cast(STATUT,string) = \"11\"))",
+ "bindingDependencies": ["STATUT"]
+ },
+ "controls": [
+ {
+ "id": "kc0p4jga-CI-0",
+ "criticality": "WARN",
+ "control": "not(cast(ACTILIB,string) = '')",
+ "errorMessage": "\"Vous n’avez pas répondu à cette question. Si c’est un oubli, veuillez compléter votre réponse. \"",
+ "bindingDependencies": ["ACTILIB"]
+ }
+ ],
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["emploi2", "emploi6", "ACTILIB"],
+ "response": { "name": "ACTILIB" }
+ },
+
+ {
+ "id": "kc1zacnn",
+ "componentType": "FilterDescription",
+ "page": "75",
+ "filterDescription": false,
+ "label": "\"Si vous ne dirigez pas une entreprise, n’êtes pas indépendant ou si vous ne travaillez pas pour un membre de votre famille, passez à la question 10\"",
+ "conditionFilter": {
+ "value": "(not(cast(STATUT,string) = \"11\"))",
+ "bindingDependencies": ["STATUT"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ }
+ },
+
+ {
+ "id": "kc0qftls",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "76",
+ "label": "\"\" || cast(cast(emploi7,string),string) || \" ?\"",
+ "conditionFilter": {
+ "value": "(not(cast(STATUT,string) = \"11\")) and (not(cast(STATUT,string) < 8 or cast(STATUT,string) = \"11\" or cast(STATUT,string) = \"\"))",
+ "bindingDependencies": ["STATUT"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["emploi7", "NOMBRSAL"],
+ "options": [
+ { "value": "1", "label": "\" Aucun salarié\"" },
+
+ { "value": "2", "label": "\" De 1 à 2 salariés\"" },
+
+ { "value": "3", "label": "\" De 3 à 9 salariés\"" },
+
+ { "value": "4", "label": "\" 10 salariés ou plus\"" }
+ ],
+ "response": { "name": "NOMBRSAL" }
+ },
+
+ {
+ "id": "kc0qz959",
+ "componentType": "Radio",
+ "mandatory": false,
+ "page": "77",
+ "label": "\"Une dernière question, quel est le revenu mensuelde votre ménage en euros ?\"",
+ "declarations": [
+ {
+ "id": "kc0qz959-kc0r6wgt",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Il s’agit du revenu net (de cotisations sociales et de C.S.G.) avant impôts (y compris avant impôt sur le revenu prélevé à la source). Prenez en compte tous les types de revenus perçus durant le mois par le ménage : salaires, pensions de retraite, minima sociaux, allocations chômage, prestations familiales, revenus du patrimoine, etc.Si les revenus sont fluctuants, faites une moyenne.\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "kc0n110n",
+ "page": "67",
+ "label": "\"IX - Votre situation professionnelle\""
+ }
+ },
+ "bindingDependencies": ["TRANCHREVENU"],
+ "options": [
+ { "value": "1", "label": "\" Moins de 800 €\"" },
+
+ { "value": "2", "label": "\" De 800 à 999 €\"" },
+
+ { "value": "3", "label": "\" De 1 000 à 1 199 €\"" },
+
+ { "value": "4", "label": "\" De 1 200 à 1 499 €\"" },
+
+ { "value": "5", "label": "\" De 1 500 à 1 999 €\"" },
+
+ { "value": "6", "label": "\" De 2 000 à 2 499 €\"" },
+
+ { "value": "7", "label": "\" De 2 500 à 2 999 €\"" },
+
+ { "value": "8", "label": "\" De 3 000 à 3 999 €\"" },
+
+ { "value": "9", "label": "\" De 4 000 à 5 999 €\"" },
+
+ { "value": "10", "label": "\" 6 000 € ou plus\"" }
+ ],
+ "response": { "name": "TRANCHREVENU" }
+ }
+ ],
+ "variables": [
+ {
+ "variableType": "COLLECTED",
+ "name": "DATENAIS",
+ "componentRef": "kbw7j25e",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SEXE",
+ "componentRef": "kbw8ookt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DIPLOME",
+ "componentRef": "kbw8yqwv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ETUDE",
+ "componentRef": "kbw97gaf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COUPLE",
+ "componentRef": "kbw9jgd2",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ETAMATRI",
+ "componentRef": "kbw9i35f",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PACS",
+ "componentRef": "kbw9gttr",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LNAIS",
+ "componentRef": "kbw9rrbt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEPNAIS",
+ "componentRef": "kbw9r169",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PAYSNAIS",
+ "componentRef": "kbwanueu",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NATIO1N1",
+ "componentRef": "kbwafrus",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NATIO1N2",
+ "componentRef": "kbwafrus",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NATIO1N3",
+ "componentRef": "kbwafrus",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NATIO1N4",
+ "componentRef": "kbwafrus",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NATIO2N",
+ "componentRef": "kbwanqdo",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NBHAB",
+ "componentRef": "kbwbok7p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NENF013",
+ "componentRef": "kbwbx3zb",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NENF1415",
+ "componentRef": "kbwbx3zb",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NENF1617",
+ "componentRef": "kbwbx3zb",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NADU1874",
+ "componentRef": "kbwbx3zb",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NADU75",
+ "componentRef": "kbwbx3zb",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NET",
+ "componentRef": "kc0gq6qv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEBITX1",
+ "componentRef": "kc0gvvrz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEBITX2",
+ "componentRef": "kc0gvvrz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEBITX3",
+ "componentRef": "kc0gvvrz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEBITX4",
+ "componentRef": "kc0gvvrz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUSEWEB",
+ "componentRef": "kc0h7448",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "USEWEB",
+ "componentRef": "kc0haj1j",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SEVWEB",
+ "componentRef": "kc0hudx9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEVICEX1",
+ "componentRef": "kc0hsh54",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEVICEX2",
+ "componentRef": "kc0hsh54",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEVICEX3",
+ "componentRef": "kc0hsh54",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEVICEX4",
+ "componentRef": "kc0hsh54",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DEVICEX5",
+ "componentRef": "kc0hsh54",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX1",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX2",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX3",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX4",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX5",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX6",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX7",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX8",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX9",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX10",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX11",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRATINTXX12",
+ "componentRef": "kc0hyu5k",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "EDUPROX1",
+ "componentRef": "kc0hwk4s",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "EDUPROX2",
+ "componentRef": "kc0hwk4s",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "EDUPROX3",
+ "componentRef": "kc0hwk4s",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ADMX1",
+ "componentRef": "kc0i0jec",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ADMX2",
+ "componentRef": "kc0i0jec",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ADMX3",
+ "componentRef": "kc0i0jec",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ADMX4",
+ "componentRef": "kc0i0jec",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ADMX5",
+ "componentRef": "kc0i0jec",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX1",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX2",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX3",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX4",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX5",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX6",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX7",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX8",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX9",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX10",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISADMX11",
+ "componentRef": "kc0i8uqf",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "AIDADMX1",
+ "componentRef": "kc0i7d8t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "AIDADMX2",
+ "componentRef": "kc0i7d8t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "AIDADMX3",
+ "componentRef": "kc0i7d8t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "AIDADMX4",
+ "componentRef": "kc0i7d8t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "AIDADMX5",
+ "componentRef": "kc0i7d8t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RENADMX1",
+ "componentRef": "kc0is12p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RENADMX2",
+ "componentRef": "kc0is12p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RENADMX3",
+ "componentRef": "kc0is12p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RENADMX4",
+ "componentRef": "kc0is12p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RENADMX5",
+ "componentRef": "kc0is12p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RENADMX6",
+ "componentRef": "kc0is12p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RENADMX7",
+ "componentRef": "kc0is12p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RENADMX8",
+ "componentRef": "kc0is12p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RENADMX9",
+ "componentRef": "kc0is12p",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "AUTADM",
+ "componentRef": "kc0iso1a",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ECOM",
+ "componentRef": "kc0ihwjw",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DATECOM",
+ "componentRef": "kc0iuqho",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX1",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX2",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX3",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX4",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX5",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX6",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX7",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX8",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX9",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX10",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX11",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX12",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX13",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX14",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX15",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACHATXX16",
+ "componentRef": "kc0ijn79",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ORIGINEX1",
+ "componentRef": "kc0iq8u1",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ORIGINEX2",
+ "componentRef": "kc0iq8u1",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ORIGINEX3",
+ "componentRef": "kc0iq8u1",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ORIGINEX4",
+ "componentRef": "kc0iq8u1",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PARTACHA",
+ "componentRef": "kc0jc05z",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUMACHAX1",
+ "componentRef": "kc0jcnvt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUMACHAX2",
+ "componentRef": "kc0jcnvt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUMACHAX3",
+ "componentRef": "kc0jcnvt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUMACHAX4",
+ "componentRef": "kc0jcnvt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUMACHAX5",
+ "componentRef": "kc0jcnvt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUMACHAX6",
+ "componentRef": "kc0jcnvt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUMACHAX7",
+ "componentRef": "kc0jcnvt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUMACHAX8",
+ "componentRef": "kc0jcnvt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SERVACHAX1",
+ "componentRef": "kc0ix4pz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SERVACHAX2",
+ "componentRef": "kc0ix4pz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SERVACHAX3",
+ "componentRef": "kc0ix4pz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SERVACHAX4",
+ "componentRef": "kc0ix4pz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SERVACHAX5",
+ "componentRef": "kc0ix4pz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SERVACHAX6",
+ "componentRef": "kc0ix4pz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PARTJOB",
+ "componentRef": "kc0j3oqg",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SHARTX1",
+ "componentRef": "kc0jjdn7",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SHARTX2",
+ "componentRef": "kc0jjdn7",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SHARTX3",
+ "componentRef": "kc0jjdn7",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SHARAX1",
+ "componentRef": "kc0ja8z6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SHARAX2",
+ "componentRef": "kc0ja8z6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SHARAX3",
+ "componentRef": "kc0ja8z6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NBCOM",
+ "componentRef": "kc0jlws6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SOMCOM",
+ "componentRef": "kc0jemvn",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX1",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX2",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX3",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX4",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX5",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX6",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX7",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX8",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX9",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX10",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PBACHAX11",
+ "componentRef": "kc0jhlsv",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FINANCEX1",
+ "componentRef": "kc0juxed",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FINANCEX2",
+ "componentRef": "kc0juxed",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FINANCEX3",
+ "componentRef": "kc0juxed",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FINANCEX4",
+ "componentRef": "kc0juxed",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISACHAX1",
+ "componentRef": "kc0jvlb9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISACHAX2",
+ "componentRef": "kc0jvlb9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISACHAX3",
+ "componentRef": "kc0jvlb9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISACHAX4",
+ "componentRef": "kc0jvlb9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISACHAX5",
+ "componentRef": "kc0jvlb9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISACHAX6",
+ "componentRef": "kc0jvlb9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISACHAX7",
+ "componentRef": "kc0jvlb9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISACHAX8",
+ "componentRef": "kc0jvlb9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISACHAX9",
+ "componentRef": "kc0jvlb9",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMPINFX1",
+ "componentRef": "kc0jw8fh",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMPINFX2",
+ "componentRef": "kc0jw8fh",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMPINFX3",
+ "componentRef": "kc0jw8fh",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMPINFX4",
+ "componentRef": "kc0jw8fh",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMPINFX5",
+ "componentRef": "kc0jw8fh",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMPINFX6",
+ "componentRef": "kc0jw8fh",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMPINFX7",
+ "componentRef": "kc0jw8fh",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMPINFX8",
+ "componentRef": "kc0jw8fh",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMPINFX9",
+ "componentRef": "kc0jw8fh",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "EXCEL",
+ "componentRef": "kc0jpxlq",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "INFOX",
+ "componentRef": "kc0k8y7u",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "VERIFINFO",
+ "componentRef": "kc0k84by",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "MOYINFO1",
+ "componentRef": "kc0jycut",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "MOYINFO2",
+ "componentRef": "kc0jycut",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "MOYINFO3",
+ "componentRef": "kc0jycut",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "MOYINFO4",
+ "componentRef": "kc0jycut",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISINFO1",
+ "componentRef": "kc0k4daj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISINFO2",
+ "componentRef": "kc0k4daj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "RAISINFO3",
+ "componentRef": "kc0k4daj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACCESX1",
+ "componentRef": "kc0kbnid",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACCESX2",
+ "componentRef": "kc0kbnid",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACCESX3",
+ "componentRef": "kc0kbnid",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACCESX4",
+ "componentRef": "kc0kbnid",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACCESX5",
+ "componentRef": "kc0kbnid",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACCESX6",
+ "componentRef": "kc0kbnid",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACCESX7",
+ "componentRef": "kc0kbnid",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SECOOK",
+ "componentRef": "kc0mdacx",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SECUNAV",
+ "componentRef": "kc0moab7",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PREOCC",
+ "componentRef": "kc0mgk5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRACKING",
+ "componentRef": "kc0mr69i",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUMEROS",
+ "componentRef": "kc0mpb1o",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DECROCHEF",
+ "componentRef": "kc0n0vfa",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SMARTPHONEX1",
+ "componentRef": "kc0mzowl",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SMARTPHONEX2",
+ "componentRef": "kc0mzowl",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SMARTPHONEX3",
+ "componentRef": "kc0mzowl",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DECROCHEM",
+ "componentRef": "kc0mw0hn",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "OPERATEUR1",
+ "componentRef": "kebbns0s",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "OPERATEUR2",
+ "componentRef": "kebbns0s",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "OPERATEUR3",
+ "componentRef": "kebbns0s",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "OPERATEUR4",
+ "componentRef": "kebbns0s",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "OPERATEUR5",
+ "componentRef": "kebbns0s",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SITUA",
+ "componentRef": "kc0n6snm",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "STATUT",
+ "componentRef": "kc0nbhww",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ENCADR",
+ "componentRef": "kc0nuukd",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CONTRAT",
+ "componentRef": "kc0o78n2",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLASSIF",
+ "componentRef": "kc0nwzzp",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DUREE_EMP",
+ "componentRef": "kc0o6lj8",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PROFESSION",
+ "componentRef": "kc0ofjt7",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ACTILIB",
+ "componentRef": "kc0p4jga",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NOMBRSAL",
+ "componentRef": "kc0qftls",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRANCHREVENU",
+ "componentRef": "kc0qz959",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_DATENAIS",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SEXE",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_DIPLOME",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_ETUDE",
+ "expression": "(not(cast(DIPLOME,string) > 3))",
+ "bindingDependencies": ["DIPLOME"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_COUPLE",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_ETAMATRI",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_PACS",
+ "expression": "(not(cast(ETAMATRI,string) = \"2\"))",
+ "bindingDependencies": ["ETAMATRI"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_LNAIS",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_DEPNAIS",
+ "expression": "(not(cast(LNAIS,string) = \"\")) and (not(cast(LNAIS,string) = \"2\"))",
+ "bindingDependencies": ["LNAIS"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_PAYSNAIS",
+ "expression": "(not(cast(LNAIS,string) = \"\")) and (not((cast(LNAIS,string) = \"1\") and not ((cast(LNAIS,string) = \"2\"))))",
+ "bindingDependencies": ["LNAIS"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_NATIO1N",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_NATIO2N",
+ "expression": "(not(cast(NATIO1N3,integer) <> 1 ))",
+ "bindingDependencies": ["NATIO1N3"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_NBHAB",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_REPARTHAB",
+ "expression": "(not(cast(NBHAB,integer) = 0))",
+ "bindingDependencies": ["NBHAB"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_NET",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_DEBITX",
+ "expression": "(not(( cast(NET,string) = \"2\" or cast(NET,string) = \"\" )))",
+ "bindingDependencies": ["NET"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_NUSEWEB",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_USEWEB",
+ "expression": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" )))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SEVWEB",
+ "expression": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" ))) and (not(cast(USEWEB,string) <> 1))",
+ "bindingDependencies": ["NUSEWEB", "USEWEB"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_DEVICEX",
+ "expression": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" )))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_PRATINTXX",
+ "expression": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" )))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_EDUPROX",
+ "expression": "(not((cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" or cast(NUSEWEB,string) = \"\") or (cast(NUSEWEB,string) = \"2\" )))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_ADMX",
+ "expression": "(not(cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\"))",
+ "bindingDependencies": ["NUSEWEB"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_RAISADMX",
+ "expression": "(not(cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\")) and (not(cast(ADMX3,integer) = 1 or cast(ADMX4,integer) = 1))",
+ "bindingDependencies": ["NUSEWEB", "ADMX3", "ADMX4"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_AIDADMX",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_RENADMX",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_AUTADM",
+ "expression": "(not((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1) or ((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))",
+ "bindingDependencies": [
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "NUSEWEB"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_ECOM",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_DATECOM",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_ACHATXX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_ORIGINEX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_PARTACHA",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_NUMACHAX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SERVACHAX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_PARTJOB",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\")) and (not(cast(SERVACHAX5,integer) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "SERVACHAX5"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SHARTX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SHARAX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_NBCOM",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SOMCOM",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_PBACHAX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(ECOM,string) = \"2\" or cast(ECOM,string) = \"\")) and (not(cast(DATECOM,string) > 1 or cast(DATECOM,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_FINANCEX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_RAISACHAX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )) or (cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_COMPINFX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_EXCEL",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(COMPINFX6,integer) = \"\" ))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "COMPINFX6"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_INFOX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_VERIFINFO",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(INFOX,string) = \"2\" or cast(INFOX,string) = \"\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "INFOX"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_MOYINFO",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(INFOX,string) = \"2\" or cast(INFOX,string) = \"\")) and (not(cast(VERIFINFO,string) = \"2\"))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "INFOX",
+ "VERIFINFO"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_RAISINFO",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" ))))) and (not(cast(INFOX,string) = \"2\" or cast(INFOX,string) = \"\")) and (not((cast(VERIFINFO,string) = \"1\" ) and not ((cast(VERIFINFO,string) = \"2\"))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM",
+ "INFOX",
+ "VERIFINFO"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_ACCESX",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SECOOK",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SECUNAV",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_PREOCC",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_TRACKING",
+ "expression": "(not((cast(NUSEWEB,string)=\"3\" or cast(NUSEWEB,string)=\"4\" or cast(NUSEWEB,string)=\"\") and cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)) and (not((cast(NUSEWEB,string) =\"3\" or cast(NUSEWEB,string) =\"4\" or cast(NUSEWEB,string) =\"\") and not ((cast(RENADMX1,integer) <> 1 and cast(RENADMX2,integer) <> 1 and cast(RENADMX3,integer) <> 1 and cast(RENADMX4,integer) <> 1 and cast(RENADMX5,integer) <> 1 and cast(RENADMX6,integer) <> 1 and cast(RENADMX7,integer) <> 1 and cast(RENADMX8,integer) <> 1)))) and (not(cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\")) and (not((cast(NUSEWEB,string) = \"2\" or cast(NUSEWEB,string) = \"3\" or cast(NUSEWEB,string) = \"4\" ) and not ((( cast(ECOM,string) = \"1\" ) and ( cast(DATECOM,string) =\"1\" )))))",
+ "bindingDependencies": [
+ "NUSEWEB",
+ "RENADMX1",
+ "RENADMX2",
+ "RENADMX3",
+ "RENADMX4",
+ "RENADMX5",
+ "RENADMX6",
+ "RENADMX7",
+ "RENADMX8",
+ "ECOM",
+ "DATECOM"
+ ]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_NUMEROS",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_DECROCHEF",
+ "expression": "(not(cast(NUMEROS,string) = \"1\" or cast(NUMEROS,string) = \"\" ))",
+ "bindingDependencies": ["NUMEROS"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SMARTPHONEX",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_DECROCHEM",
+ "expression": "(not(cast(SMARTPHONEX3,integer) = 1 or ( cast(SMARTPHONEX1,integer) = \"\" and cast(SMARTPHONEX2,integer) = \"\" and cast(SMARTPHONEX3,integer) = \"\" )))",
+ "bindingDependencies": ["SMARTPHONEX3", "SMARTPHONEX1", "SMARTPHONEX2"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_OPERATEUR",
+ "expression": "(not(cast(SMARTPHONEX3,integer) = 1 or ( cast(SMARTPHONEX1,integer) = \"\" and cast(SMARTPHONEX2,integer) = \"\" and cast(SMARTPHONEX3,integer) = \"\" )))",
+ "bindingDependencies": ["SMARTPHONEX3", "SMARTPHONEX1", "SMARTPHONEX2"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_SITUA",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_STATUT",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_ENCADR",
+ "expression": "(not(cast(STATUT,string) = \"11\")) and (not(cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" or cast(STATUT,string) = \"10\" ))",
+ "bindingDependencies": ["STATUT"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_CONTRAT",
+ "expression": "(not(cast(STATUT,string) = \"11\")) and (not(cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" or cast(STATUT,string) = \"10\" ))",
+ "bindingDependencies": ["STATUT"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_CLASSIF",
+ "expression": "(not(cast(STATUT,string) = \"11\")) and (not(cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" or cast(STATUT,string) = \"10\" ))",
+ "bindingDependencies": ["STATUT"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_DUREE_EMP",
+ "expression": "(not(cast(STATUT,string) = \"11\"))",
+ "bindingDependencies": ["STATUT"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_PROFESSION",
+ "expression": "(not(cast(STATUT,string) = \"11\"))",
+ "bindingDependencies": ["STATUT"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_ACTILIB",
+ "expression": "(not(cast(STATUT,string) = \"11\"))",
+ "bindingDependencies": ["STATUT"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_NOMBRSAL",
+ "expression": "(not(cast(STATUT,string) = \"11\")) and (not(cast(STATUT,string) < 8 or cast(STATUT,string) = \"11\" or cast(STATUT,string) = \"\"))",
+ "bindingDependencies": ["STATUT"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "FILTER_RESULT_TRANCHREVENU",
+ "expression": "true"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "JJMMCOURANT",
+ "expression": "number(substr(string(current-date()),6,2) || substr(string(current-date()),9,2))"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "JJMMNAISS",
+ "expression": "if (string() <> \"\") then number(substr(string(),6,2) || substr(string(),9,2)) else 0",
+ "bindingDependencies": ["DATENAIS"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "ANNEECOURANT",
+ "expression": "number(substr(string(current-date()),1,4))"
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "ANNEENAISS",
+ "expression": "if (string() <> \"\") then number(substr(string(),1,4)) else 1900",
+ "bindingDependencies": ["DATENAIS"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "AGE",
+ "expression": "if ( cast(number(substr(string(current-date()),6,2) || substr(string(current-date()),9,2)),integer) >= cast(if (string() <> \"\") then number(substr(string(),6,2) || substr(string(),9,2)) else 0,integer) and cast(number(substr(string(current-date()),1,4)),integer) > cast(if (string() <> \"\") then number(substr(string(),1,4)) else 1900,integer)) then cast(number(substr(string(current-date()),1,4)),integer)-cast(if (string() <> \"\") then number(substr(string(),1,4)) else 1900,integer) else if (cast(number(substr(string(current-date()),6,2) || substr(string(current-date()),9,2)),integer) < cast(if (string() <> \"\") then number(substr(string(),6,2) || substr(string(),9,2)) else 0,integer) and cast(number(substr(string(current-date()),1,4)),integer) > cast(if (string() <> \"\") then number(substr(string(),1,4)) else 1900,integer)) then cast(number(substr(string(current-date()),1,4)),integer)-cast(if (string() <> \"\") then number(substr(string(),1,4)) else 1900,integer)-1 else 0",
+ "bindingDependencies": ["DATENAIS"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "plusieurnatio",
+ "expression": "if (cast(NATIO1N1,integer) = \"\" and cast(NATIO1N2,integer) = \"\") then \"\" else \"autre\"",
+ "bindingDependencies": ["NATIO1N1", "NATIO1N2"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "emploi",
+ "expression": "if (cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\" ) then \"emploi actuel, êtes-vous \" else \"dernier emploi, étiez-vous\"",
+ "bindingDependencies": ["SITUA"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "emploi2",
+ "expression": "if (cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\" ) then \"est\" else \"était\"",
+ "bindingDependencies": ["SITUA"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "emploi3",
+ "expression": "if (cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\" ) then \"Êtes\" else \"Étiez\"",
+ "bindingDependencies": ["SITUA"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "emploi4",
+ "expression": "if (cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\" ) then \"Travaillez\" else \"Travailliez\"",
+ "bindingDependencies": ["SITUA"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "emploi5",
+ "expression": "if (cast(STATUT,string) = \"10\" and cast(SITUA,string) = \"1\" ) then \"la profession principale de la personne que vous aidez\" else if (cast(STATUT,string) = \"10\" and cast(SITUA,string) = \"2\" ) then \"la profession principale de la personne que vous aidez\" else if (cast(STATUT,string) = \"10\" and cast(SITUA,string) > 2 ) then \"la profession principale de la personne que vous aidiez\" else if (cast(STATUT,string) = \"10\" and cast(SITUA,string) = \"\" ) then \"la profession principale de la personne que vous aidiez\" else \"votre profession principale\"",
+ "bindingDependencies": ["STATUT", "SITUA"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "emploi6",
+ "expression": "if ( cast(STATUT,string) <> \"\" and cast(STATUT,string) < 8 and ( cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\" ) ) then \"où vous travaillez\" else if ( cast(STATUT,string) <> \"\" and cast(STATUT,string) < 8 and ( cast(SITUA,string) > 2 or cast(SITUA,string) = \"\" ) ) then \"où vous travailliez\" else if ( (cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" ) and (cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\") ) then \"que vous dirigez\" else if ( (cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" ) and (cast(SITUA,string) > 2 or cast(SITUA,string) = \"\") ) then \"que vous dirigiez\" else if ( cast(STATUT,string) = \"10\" and ( cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\" ) ) then \"que dirige la personne que vous aidez\" else if ( cast(STATUT,string) = \"10\" and ( cast(SITUA,string) > 2 or cast(SITUA,string) = \"\" ) ) then \"que dirige la personne que vous aidiez\" else if ( cast(STATUT,string) = \"\" and ( cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\" ) ) then \"où vous travaillez\" else if ( cast(STATUT,string) = \"\" and ( cast(SITUA,string) <> \"\" and cast(SITUA,string) > 2 ) ) then \"où vous travailliez\" else \"où vous travailliez\"",
+ "bindingDependencies": ["STATUT", "SITUA"]
+ },
+
+ {
+ "variableType": "CALCULATED",
+ "name": "emploi7",
+ "expression": "if ( (cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" ) and (cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\") ) then \"Combien de salariés employez-vous\" else if ( (cast(STATUT,string) = \"8\" or cast(STATUT,string) = \"9\" ) and (cast(SITUA,string) > 2 or cast(SITUA,string) = \"\") ) then \"Combien de salariés employiez-vous\" else if ( cast(STATUT,string) = \"10\" and ( cast(SITUA,string) = \"1\" or cast(SITUA,string) = \"2\" ) ) then \"Combien de salariés emploie la personne que vous aidez\" else if ( cast(STATUT,string) = \"10\" and ( cast(SITUA,string) > 2 or cast(SITUA,string) = \"\" ) ) then \"Combien de salariés employait la personne que vous aidiez\" else \"\"",
+ "bindingDependencies": ["STATUT", "SITUA"]
+ }
+ ]
+}
diff --git a/src/questionnaire-lunatic/lunatic-questionnaire.json b/src/questionnaire-lunatic/lunatic-questionnaire.json
new file mode 100644
index 0000000..cab01bd
--- /dev/null
+++ b/src/questionnaire-lunatic/lunatic-questionnaire.json
@@ -0,0 +1,1567 @@
+{
+ "variables": [
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q1",
+ "componentRef": "kv6b204s"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q1Bis",
+ "componentRef": "kv9irps1"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q2",
+ "componentRef": "kv2c0sl1"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q3",
+ "componentRef": "kv6b9vzf"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q4",
+ "componentRef": "kv6as9ak"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q5",
+ "componentRef": "kv6avlvf"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "QUELESTLEN",
+ "componentRef": "kv6b4q01"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q7",
+ "componentRef": "kv6bgkjw"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q81",
+ "componentRef": "kupwbo05"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q82",
+ "componentRef": "kupwbo05"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q83",
+ "componentRef": "kupwbo05"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q84",
+ "componentRef": "kupwbo05"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q85",
+ "componentRef": "kupwbo05"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "NBSOEURS",
+ "componentRef": "kupwwqgx"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "NOMBONBON",
+ "componentRef": "kv2b9nuw"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q11",
+ "componentRef": "kv6bduao"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q12",
+ "componentRef": "kv6bqxtl"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q131",
+ "componentRef": "kv6bkguq"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q132",
+ "componentRef": "kv6bkguq"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q133",
+ "componentRef": "kv6bkguq"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q134",
+ "componentRef": "kv6bkguq"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q135",
+ "componentRef": "kv6bkguq"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q136",
+ "componentRef": "kv6bkguq"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q14",
+ "componentRef": "kv6bx7l8"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "Q15",
+ "componentRef": "kv6bijy7"
+ },
+ {
+ "variableType": "CALCULATED",
+ "expression": "true",
+ "name": "FILTER_RESULT_Q1"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": ["Q1"],
+ "expression": "(not(cast(Q1,string) <> \"2\"))",
+ "name": "FILTER_RESULT_Q1Bis"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\"))))",
+ "name": "FILTER_RESULT_Q2"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not(cast(Q2,string) = \"3\"))",
+ "name": "FILTER_RESULT_Q3"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not(cast(Q2,string) = \"3\"))",
+ "name": "FILTER_RESULT_Q4"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not(cast(Q2,string) = \"3\"))",
+ "name": "FILTER_RESULT_Q5"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not(cast(Q2,string) = \"3\"))",
+ "name": "FILTER_RESULT_Q6"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\"))))",
+ "name": "FILTER_RESULT_Q7"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not(cast(Q7,string) = \"2\"))",
+ "name": "FILTER_RESULT_Q8"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not(cast(Q7,string) = \"2\"))",
+ "name": "FILTER_RESULT_Q9"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not(cast(Q7,string) = \"2\"))",
+ "name": "FILTER_RESULT_Q10"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7",
+ "NOMBONBON"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\"))))",
+ "name": "FILTER_RESULT_Q11"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7",
+ "NOMBONBON"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\"))))",
+ "name": "FILTER_RESULT_Q12"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7",
+ "NOMBONBON"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\"))))",
+ "name": "FILTER_RESULT_Q13"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "NOMBONBON",
+ "Q7",
+ "Q131",
+ "Q132",
+ "Q133",
+ "Q134",
+ "Q135",
+ "Q136"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\") or (cast(Q7,string) = \"3\"))) or ((cast(Q131,string) <> \"1\" or cast(Q132,string) <> \"1\" or cast(Q133,string) <> \"1\" or cast(Q134,string) <> \"1\" or cast(Q135,string) <> \"1\" or cast(Q136,string) <> \"1\" ) and not ((cast(Q7,string) = \"3\")))))",
+ "name": "FILTER_RESULT_Q14"
+ },
+ {
+ "variableType": "CALCULATED",
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "NOMBONBON",
+ "Q7",
+ "Q131",
+ "Q132",
+ "Q133",
+ "Q134",
+ "Q135",
+ "Q136"
+ ],
+ "expression": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\") or (cast(Q7,string) = \"3\"))) or ((cast(Q131,string) <> \"1\" or cast(Q132,string) <> \"1\" or cast(Q133,string) <> \"1\" or cast(Q134,string) <> \"1\" or cast(Q135,string) <> \"1\" or cast(Q136,string) <> \"1\" ) and not ((cast(Q7,string) = \"3\")))))",
+ "name": "FILTER_RESULT_Q15"
+ }
+ ],
+ "components": [
+ {
+ "componentType": "Sequence",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {"value": "true"},
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\"",
+ "declarations": [
+ {
+ "declarationType": "HELP",
+ "id": "kupw3ga8-kupw4n6q",
+ "label": "\"Comment qu\u2019c\u2019est les grôs ? Ça geht\u2019s mohl ? Vous êtes prêts pour le repérage ?
Avant toute chose, quelques explications et consignes.
\u200b\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "HELP",
+ "id": "kupw3ga8-kv6c99fb",
+ "label": "\"**Explications :**
Cette enquête est un hommage au patois lorrain (vocabulaire systématiquement placé entre guillemets) mais avant tout aux « grôs » : comprenez les « amis ». Métallica oblige, les Grôs c\u2019est aussi une association de 12 artistes lorrains issus de 7 groupes bien déterminés à envoyer du Grôs sur scène. Leur tournée « Le Grôs Tour » vient tout juste de s\u2019achever ; la vôtre en tant qu\u2019artistes enquêteurs commence maintenant.\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "HELP",
+ "id": "kupw3ga8-kv6c9iyg",
+ "label": "\"**Consignes :**
- rangez vos \"schlapps\" car vous allez en « grôs » devoir parcourir la ville\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "HELP",
+ "id": "kupw3ga8-kv83nytc",
+ "label": "\"- dirigez-vous vers l\u2019arrêt de tram le plus proche\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "HELP",
+ "id": "kupw3ga8-kv837fqo",
+ "label": "\"- prendre le tram en direction d\u2019Essey Mouzimpré\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "HELP",
+ "id": "kupw3ga8-kv8399ru",
+ "label": "\"- descendre à l\u2019arrêt « Gare »\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "HELP",
+ "id": "kupw3ga8-kv839y9y",
+ "label": "\"- commencez le repérage dans l\u2019ordre suivant : UE 1, UE 2, UE 3 et UE 4\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "HELP",
+ "id": "kupw3ga8-kv83bifk",
+ "label": "\"Pour repérer l\u2019UE 3, passez obligatoirement par la place de la Carrière\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }
+ ]
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["Q1"],
+ "response": {"name": "Q1"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "conditionFilter": {"value": "true"},
+ "id": "kv6b204s",
+ "page": "1",
+ "label": "\"➡ 1. Avez-vous réussi à identifier l\u2019UE (Ultime Endroit) ?\"",
+ "mandatory": false
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {"value": "true"},
+ "id": "kv6b1lfa",
+ "page": "1",
+ "label": "\"C\u2019est la « chouff » c\u2019était pourtant simple ! Si t\u2019es perdu dans Nancy appelle tes « Grôs » au : 06 62 06 95 67\"",
+ "filterDescription": false
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["Q1Bis"],
+ "response": {"name": "Q1Bis"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": ["Q1"],
+ "value": "(not(cast(Q1,string) <> \"2\"))"
+ },
+ "id": "kv9irps1",
+ "page": "1",
+ "label": "\"➡ 2. C\u2019est la « chouff » c\u2019était pourtant simple ! Si t\u2019es perdu dans Nancy appelle tes « Grôs » au : 06 62 06 95 67. Poursuivre ?\"",
+ "mandatory": false
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": ["Q1"],
+ "value": "(not(cast(Q1,string) <> \"2\"))"
+ },
+ "id": "kv9infhk",
+ "page": "1",
+ "label": "\"Poursuivre\"",
+ "filterDescription": false
+ },
+ {
+ "componentType": "Radio",
+ "bindingDependencies": ["Q2"],
+ "response": {"name": "Q2"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Salle de concert\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Administration\"",
+ "value": "2"
+ },
+ {
+ "label": "\"Commerce\"",
+ "value": "3"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\"))))"
+ },
+ "id": "kv2c0sl1",
+ "page": "1",
+ "label": "\"➡ 3. Quel est l\u2019usage, en « grôs » de cet UE ?\"",
+ "mandatory": false
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\"))))"
+ },
+ "id": "kv6cbtud",
+ "page": "1",
+ "label": "\"Si c\u2019est une salle de concert, allez question à la fin\"",
+ "filterDescription": false
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\"))))"
+ },
+ "id": "kv6c79em",
+ "page": "1",
+ "label": "\"Si c\u2019est un commerce, allez question 7\"",
+ "filterDescription": false
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["Q3"],
+ "response": {"name": "Q3"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Mairie\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Préfecture\"",
+ "value": "2"
+ },
+ {
+ "label": "\"Rectorat\"",
+ "value": "3"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not(cast(Q2,string) = \"3\"))"
+ },
+ "id": "kv6b9vzf",
+ "page": "1",
+ "label": "\"➡ 4. De quelle administration s\u2019agit-il ?\"",
+ "mandatory": false,
+ "declarations": [{
+ "declarationType": "HELP",
+ "id": "kv6b9vzf-kv6bylqv",
+ "label": "\"Un hôtel n\u2019est pas seulement un endroit où on peut se reposer quand on est « schlass »\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }]
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["Q4"],
+ "response": {"name": "Q4"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"100 x 120 mètres\"",
+ "value": "1"
+ },
+ {
+ "label": "\"200 x 250 mètres\"",
+ "value": "2"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not(cast(Q2,string) = \"3\"))"
+ },
+ "id": "kv6as9ak",
+ "page": "1",
+ "label": "\"➡ 5. Quelle est, en « grôs », la dimension du monument préféré des Français 2021 situé en face de cette administration ?\"",
+ "mandatory": false
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["Q5"],
+ "response": {"name": "Q5"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Entre les Deux Villes\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Devant l\u2019hôpital Saint-Julien\"",
+ "value": "2"
+ },
+ {
+ "label": "\"Royale\"",
+ "value": "3"
+ },
+ {
+ "label": "\"du Peuple\"",
+ "value": "4"
+ },
+ {
+ "label": "\"Napoléon\"",
+ "value": "5"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not(cast(Q2,string) = \"3\"))"
+ },
+ "id": "kv6avlvf",
+ "page": "1",
+ "label": "\"➡ 6. Quel(s) mot(s), ancien nom de ce monument, a(ont) été martelé(s) à l\u2019angle du Grand Hôtel à la révolution ?\"",
+ "mandatory": false,
+ "declarations": [{
+ "declarationType": "HELP",
+ "id": "kv6avlvf-kv6c31ag",
+ "label": "\"Placez-vous à la droite du Grand Hôtel de la Reine, puis « guettez voir » l\u2019angle du bâtiment à quelques mètres du sol\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }]
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["QUELESTLEN"],
+ "response": {"name": "QUELESTLEN"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Louis XV\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Stanislas Leszczynski\"",
+ "value": "2"
+ },
+ {
+ "label": "\"Emmanuel Héré\"",
+ "value": "3"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not(cast(Q2,string) = \"3\"))"
+ },
+ "id": "kv6b4q01",
+ "page": "1",
+ "label": "\"➡ 7. Quel est le nom du « grôs » planté au milieu du monument ?\"",
+ "mandatory": false
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not(cast(Q2,string) = \"3\"))"
+ },
+ "id": "kv6ba9v7",
+ "page": "1",
+ "label": "\"Bravo, vous avez terminé le repérage de cet UE.\"",
+ "filterDescription": false
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["Q7"],
+ "response": {"name": "Q7"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Vente de douceurs lorraines (« beum\u2019s » etc.)\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Vente de boissons pour « cheûler »\"",
+ "value": "2"
+ },
+ {
+ "label": "\"Restaurant pour « grailler » et « tosser »\"",
+ "value": "3"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\"))))"
+ },
+ "id": "kv6bgkjw",
+ "page": "1",
+ "label": "\"➡ 8. Quelle est l\u2019activité principale de ce commerce ?\"",
+ "mandatory": false,
+ "declarations": [{
+ "declarationType": "HELP",
+ "id": "kv6bgkjw-kv6bnyi5",
+ "label": "\"Si besoin, « cailler » par la vitrine\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }]
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\"))))"
+ },
+ "id": "kv6bt5q6",
+ "page": "1",
+ "label": "\"Si vous avez répondu \"Vente de boissons pour « cheûler »\" allez question 11\"",
+ "filterDescription": false
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\"))))"
+ },
+ "id": "kv6bsm7x",
+ "page": "1",
+ "label": "\"Si vous avez répondu \"Restaurant pour « grailler » et « tosser »\", allez question 14\"",
+ "filterDescription": false
+ },
+ {
+ "componentType": "CheckboxGroup",
+ "bindingDependencies": [
+ "Q81",
+ "Q82",
+ "Q83",
+ "Q84",
+ "Q85"
+ ],
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "responses": [
+ {
+ "response": {"name": "Q81"},
+ "id": "kupwbo05-QOP-kv6bk6az",
+ "label": "\"Des « schnecks »\""
+ },
+ {
+ "response": {"name": "Q82"},
+ "id": "kupwbo05-QOP-kv6bkljq",
+ "label": "\"Des « beum\u2019s »\""
+ },
+ {
+ "response": {"name": "Q83"},
+ "id": "kupwbo05-QOP-kv6bp4xj",
+ "label": "\"Des pâtes de fruits\""
+ },
+ {
+ "response": {"name": "Q84"},
+ "id": "kupwbo05-QOP-kv6bu0qp",
+ "label": "\"Du chocolat\""
+ },
+ {
+ "response": {"name": "Q85"},
+ "id": "kupwbo05-QOP-kv6brsar",
+ "label": "\"Des macarons\""
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not(cast(Q7,string) = \"2\"))"
+ },
+ "id": "kupwbo05",
+ "page": "1",
+ "label": "\"➡ 9. Que vous propose-t-on de déguster dans cet endroit mythique ?\"",
+ "declarations": [
+ {
+ "declarationType": "HELP",
+ "id": "kupwbo05-kv6bqsin",
+ "label": "\"Nécessite d\u2019avoir « clanché » la porte pour rentrer\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "HELP",
+ "id": "kupwbo05-kv6buhug",
+ "label": "\"Plusieurs réponses possibles\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }
+ ]
+ },
+ {
+ "componentType": "Input",
+ "bindingDependencies": ["NBSOEURS"],
+ "response": {"name": "NBSOEURS"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not(cast(Q7,string) = \"2\"))"
+ },
+ "id": "kupwwqgx",
+ "page": "1",
+ "label": "\"➡ 10. Le Macaron des Soeurs est entré dans le patrimoine gastronomique des Nancéiens. Combien étaient-elles ?\"",
+ "mandatory": false,
+ "maxLength": 249,
+ "declarations": [{
+ "declarationType": "HELP",
+ "id": "kupwwqgx-kupwzf9r",
+ "label": "\"La réponse sera à fournir en hexadécimal\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }]
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["NOMBONBON"],
+ "response": {"name": "NOMBONBON"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not(cast(Q7,string) = \"2\"))"
+ },
+ "id": "kv2b9nuw",
+ "page": "1",
+ "label": "\"➡ 11. Connaissez-vous ce petit « beum\u2019s » légèrement acidulé, carré, plat, translucide et de couleur dorée fortement parfumé, symbole de Nancy ?\"",
+ "mandatory": false,
+ "declarations": [
+ {
+ "declarationType": "INSTRUCTION",
+ "id": "kv2b9nuw-kv9i6cqo",
+ "label": "\"Si oui : achetez un p\u2019tit « cornet » pour les concepteurs de l\u2019enquête.\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "INSTRUCTION",
+ "id": "kv2b9nuw-kv9i95rj",
+ "label": "\"Si non : ça vaut le coup de goûter. Pensez aussi à acheter un p\u2019tit « cornet » aux concepteurs de l\u2019enquête.\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }
+ ]
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not(cast(Q7,string) = \"2\"))"
+ },
+ "id": "kv2bpjmo",
+ "page": "1",
+ "label": "\"Bravo, vous avez terminé le repérage de cet UE.\"",
+ "filterDescription": false
+ },
+ {
+ "componentType": "Dropdown",
+ "bindingDependencies": ["Q11"],
+ "response": {"name": "Q11"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Du « schnaps »\"",
+ "value": "1"
+ },
+ {
+ "label": "\"De la bière\"",
+ "value": "2"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7",
+ "NOMBONBON"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\"))))"
+ },
+ "id": "kv6bduao",
+ "page": "1",
+ "label": "\"➡ 12. Que vous propose-t-on de principalement « cheûler » dans cet endroit mythique du vieux Nancy ?\"",
+ "mandatory": false,
+ "declarations": [{
+ "declarationType": "INSTRUCTION",
+ "id": "kv6bduao-kv6bwq37",
+ "label": "\"Nécessite pas forcément d\u2019avoir « clanché » la porte pour répondre\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }]
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["Q12"],
+ "response": {"name": "Q12"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7",
+ "NOMBONBON"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\"))))"
+ },
+ "id": "kv6bqxtl",
+ "page": "1",
+ "label": "\"➡ 13. La fabrique des GrÔ est-elle bien représentée dans cet établissement ?\"",
+ "mandatory": false,
+ "declarations": [{
+ "declarationType": "HELP",
+ "id": "kv6bqxtl-kv6bnket",
+ "label": "\"Nécessite forcément d\u2019avoir « clanché » la porte pour aller poser la question\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }]
+ },
+ {
+ "componentType": "Table",
+ "bindingDependencies": [
+ "Q131",
+ "Q132",
+ "Q133",
+ "Q134",
+ "Q135",
+ "Q136"
+ ],
+ "cells": [
+ [
+ {
+ "label": "\"La GrÔ\"",
+ "value": "1"
+ },
+ {
+ "componentType": "Radio",
+ "bindingDependencies": ["Q131"],
+ "response": {"name": "Q131"},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "id": "kv6bkguq-QOP-kv9k05m7"
+ }
+ ],
+ [
+ {
+ "label": "\"La GrÔ Niasse\"",
+ "value": "2"
+ },
+ {
+ "componentType": "Radio",
+ "bindingDependencies": ["Q132"],
+ "response": {"name": "Q132"},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "id": "kv6bkguq-QOP-kv9k1ylo"
+ }
+ ],
+ [
+ {
+ "label": "\"La GrÔ Alimentaire\"",
+ "value": "3"
+ },
+ {
+ "componentType": "Radio",
+ "bindingDependencies": ["Q133"],
+ "response": {"name": "Q133"},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "id": "kv6bkguq-QOP-kv9jqvg8"
+ }
+ ],
+ [
+ {
+ "label": "\"La GrÔ Gnon\"",
+ "value": "4"
+ },
+ {
+ "componentType": "Radio",
+ "bindingDependencies": ["Q134"],
+ "response": {"name": "Q134"},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "id": "kv6bkguq-QOP-kv9k1yxj"
+ }
+ ],
+ [
+ {
+ "label": "\"La GrÔ Landaise\"",
+ "value": "5"
+ },
+ {
+ "componentType": "Radio",
+ "bindingDependencies": ["Q135"],
+ "response": {"name": "Q135"},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "id": "kv6bkguq-QOP-kv9k1lvl"
+ }
+ ],
+ [
+ {
+ "label": "\"La GrÔles de Dames\"",
+ "value": "6"
+ },
+ {
+ "componentType": "Radio",
+ "bindingDependencies": ["Q136"],
+ "response": {"name": "Q136"},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "id": "kv6bkguq-QOP-kv9jts6w"
+ }
+ ]
+ ],
+ "positioning": "HORIZONTAL",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7",
+ "NOMBONBON"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\"))))"
+ },
+ "id": "kv6bkguq",
+ "page": "1",
+ "label": "\"➡ 14. Quels genres de Grô peut-on y trouver ?\"",
+ "mandatory": false,
+ "declarations": [
+ {
+ "declarationType": "HELP",
+ "id": "kv6bkguq-kv6butzv",
+ "label": "\"Plusieurs réponses possibles\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "INSTRUCTION",
+ "id": "kv6bkguq-kv9iev29",
+ "label": "\"Achetez la GrÔ de votre choix pour les concepteurs de l\u2019enquête (pas obligé de tout goûter pour se décider).\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }
+ ]
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "Q7",
+ "NOMBONBON"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(cast(Q7,string) = \"3\")) and (not((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\"))))"
+ },
+ "id": "kv6bggv0",
+ "page": "1",
+ "label": "\" Bravo, vous avez terminé le repérage de cet UE \"",
+ "filterDescription": false
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["Q14"],
+ "response": {"name": "Q14"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "NOMBONBON",
+ "Q7",
+ "Q131",
+ "Q132",
+ "Q133",
+ "Q134",
+ "Q135",
+ "Q136"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\") or (cast(Q7,string) = \"3\"))) or ((cast(Q131,string) <> \"1\" or cast(Q132,string) <> \"1\" or cast(Q133,string) <> \"1\" or cast(Q134,string) <> \"1\" or cast(Q135,string) <> \"1\" or cast(Q136,string) <> \"1\" ) and not ((cast(Q7,string) = \"3\")))))"
+ },
+ "id": "kv6bx7l8",
+ "page": "1",
+ "label": "\"➡ 15. Cet établissement est-il ouvert tous les jours « entre midi » ?\"",
+ "mandatory": false,
+ "declarations": [{
+ "declarationType": "HELP",
+ "id": "kv6bx7l8-kv6bzpsv",
+ "label": "\"Pas de « schlague » : bien se renseigner avant de répondre !\"",
+ "position": "AFTER_QUESTION_TEXT"
+ }]
+ },
+ {
+ "componentType": "CheckboxOne",
+ "bindingDependencies": ["Q15"],
+ "response": {"name": "Q15"},
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "options": [
+ {
+ "label": "\"Oui\"",
+ "value": "1"
+ },
+ {
+ "label": "\"Non\"",
+ "value": "2"
+ }
+ ],
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "NOMBONBON",
+ "Q7",
+ "Q131",
+ "Q132",
+ "Q133",
+ "Q134",
+ "Q135",
+ "Q136"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\") or (cast(Q7,string) = \"3\"))) or ((cast(Q131,string) <> \"1\" or cast(Q132,string) <> \"1\" or cast(Q133,string) <> \"1\" or cast(Q134,string) <> \"1\" or cast(Q135,string) <> \"1\" or cast(Q136,string) <> \"1\" ) and not ((cast(Q7,string) = \"3\")))))"
+ },
+ "id": "kv6bijy7",
+ "page": "1",
+ "label": "\"➡ 16. Votre ventre est-il prêt à encaisser un bon p\u2019tit menu Lorrain ?\"",
+ "mandatory": false,
+ "declarations": [
+ {
+ "declarationType": "INSTRUCTION",
+ "id": "kv6bijy7-kv9il6h2",
+ "label": "\"Si oui : installez-vous à l\u2019étage avec les autres « Grôs ».\"",
+ "position": "AFTER_QUESTION_TEXT"
+ },
+ {
+ "declarationType": "INSTRUCTION",
+ "id": "kv6bijy7-kv9io39x",
+ "label": "\"Si non : ben désolé y\u2019a que ça à « grailler ». Installez-vous à l\u2019étage avec les autres « Grôs ». \"",
+ "position": "AFTER_QUESTION_TEXT"
+ }
+ ]
+ },
+ {
+ "componentType": "FilterDescription",
+ "hierarchy": {"sequence": {
+ "id": "kupw3ga8",
+ "page": "1",
+ "label": "\"I - Questionnaire \"Le Grôs Tour 2021\"\""
+ }},
+ "conditionFilter": {
+ "bindingDependencies": [
+ "Q1Bis",
+ "Q1",
+ "Q2",
+ "QUELESTLEN",
+ "NOMBONBON",
+ "Q7",
+ "Q131",
+ "Q132",
+ "Q133",
+ "Q134",
+ "Q135",
+ "Q136"
+ ],
+ "value": "(not((cast(Q1Bis,string) = \"2\") and not ((cast(Q1,string) <> \"2\")))) and (not(cast(Q2,string) = \"1\" )) and (not((cast(QUELESTLEN,string) = \"1\" or cast(QUELESTLEN,string) = \"2\" or cast(QUELESTLEN,string) = \"3\") and not ((cast(Q2,string) = \"3\")))) and (not(((cast(NOMBONBON,string) = \"1\" or cast(NOMBONBON,string)=\"2\") and not ((cast(Q7,string) = \"2\") or (cast(Q7,string) = \"3\"))) or ((cast(Q131,string) <> \"1\" or cast(Q132,string) <> \"1\" or cast(Q133,string) <> \"1\" or cast(Q134,string) <> \"1\" or cast(Q135,string) <> \"1\" or cast(Q136,string) <> \"1\" ) and not ((cast(Q7,string) = \"3\")))))"
+ },
+ "id": "kv6bktye",
+ "page": "1",
+ "label": "\"Bravo, vous avez terminé le repérage de cet UE.\"",
+ "filterDescription": false
+ }
+ ],
+ "pagination": "sequence",
+ "lunaticModelVersion": "2.2.6",
+ "modele": "GROSTOUR2021",
+ "enoCoreVersion": "2.2.11-dev-logement2",
+ "generatingDate": "27-10-2021 15:19:24",
+ "missing": false,
+ "id": "kupwb7d40",
+ "label": "Le Grôs Tour 2021",
+ "maxPage": "1"
+}
\ No newline at end of file
diff --git a/src/questionnaire-lunatic/questionnaireTest.json b/src/questionnaire-lunatic/questionnaireTest.json
new file mode 100644
index 0000000..0e58077
--- /dev/null
+++ b/src/questionnaire-lunatic/questionnaireTest.json
@@ -0,0 +1,343 @@
+{
+ "variables": [
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "COMMENT_QE",
+ "componentRef": "COMMENT-QUESTION"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ",
+ "componentRef": "km4o9c4y"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ_MISSING",
+ "componentRef": "km4o9c4y"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ2",
+ "componentRef": "km4ofpsy"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ2_MISSING",
+ "componentRef": "km4ofpsy"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ3",
+ "componentRef": "km4oroff"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ3_MISSING",
+ "componentRef": "km4oroff"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ4",
+ "componentRef": "km4owm51"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ4_MISSING",
+ "componentRef": "km4owm51"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ5",
+ "componentRef": "km4ozeq1"
+ },
+ {
+ "variableType": "COLLECTED",
+ "values": {
+ "COLLECTED": null,
+ "EDITED": null,
+ "INPUTED": null,
+ "FORCED": null,
+ "PREVIOUS": null
+ },
+ "name": "TESTQ5_MISSING",
+ "componentRef": "km4ozeq1"
+ }
+ ],
+ "components": [
+ {
+ "componentType": "Sequence",
+ "hierarchy": {
+ "sequence": {
+ "id": "km4oej2r",
+ "page": "1",
+ "label": "\"I - \" || \"Test\""
+ }
+ },
+ "conditionFilter": {
+ "value": "true"
+ },
+ "id": "km4oej2r",
+ "page": "1",
+ "label": "\"I - \" || \"Test\""
+ },
+ {
+ "componentType": "Textarea",
+ "bindingDependencies": [
+ "TESTQ_MISSING",
+ "TESTQ"
+ ],
+ "missingResponse": {
+ "name": "TESTQ_MISSING"
+ },
+ "response": {
+ "name": "TESTQ"
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "km4oej2r",
+ "page": "1",
+ "label": "\"I - \" || \"Test\""
+ }
+ },
+ "conditionFilter": {
+ "value": "true"
+ },
+ "id": "km4o9c4y",
+ "page": "2",
+ "label": "\"➡ \" || \"TestQ\"",
+ "mandatory": false,
+ "maxLength": 255
+ },
+ {
+ "componentType": "Textarea",
+ "bindingDependencies": [
+ "TESTQ2_MISSING",
+ "TESTQ2"
+ ],
+ "missingResponse": {
+ "name": "TESTQ2_MISSING"
+ },
+ "response": {
+ "name": "TESTQ2"
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "km4oej2r",
+ "page": "1",
+ "label": "\"I - \" || \"Test\""
+ }
+ },
+ "conditionFilter": {
+ "value": "true"
+ },
+ "id": "km4ofpsy",
+ "page": "3",
+ "label": "\"➡ \" || \"TestQ2 !\"",
+ "mandatory": false,
+ "maxLength": 255
+ },
+ {
+ "componentType": "Textarea",
+ "bindingDependencies": [
+ "TESTQ3_MISSING",
+ "TESTQ3"
+ ],
+ "missingResponse": {
+ "name": "TESTQ3_MISSING"
+ },
+ "response": {
+ "name": "TESTQ3"
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "km4oej2r",
+ "page": "1",
+ "label": "\"I - \" || \"Test\""
+ }
+ },
+ "conditionFilter": {
+ "value": "true"
+ },
+ "id": "km4oroff",
+ "page": "4",
+ "label": "\"➡ \" || \"TestQ3\"",
+ "mandatory": false,
+ "maxLength": 255
+ },
+ {
+ "componentType": "Textarea",
+ "bindingDependencies": [
+ "TESTQ4_MISSING",
+ "TESTQ4"
+ ],
+ "missingResponse": {
+ "name": "TESTQ4_MISSING"
+ },
+ "response": {
+ "name": "TESTQ4"
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "km4oej2r",
+ "page": "1",
+ "label": "\"I - \" || \"Test\""
+ }
+ },
+ "conditionFilter": {
+ "value": "true"
+ },
+ "id": "km4owm51",
+ "page": "5",
+ "label": "\"➡ \" || \"TESTQ4 \"",
+ "mandatory": false,
+ "maxLength": 255
+ },
+ {
+ "componentType": "Textarea",
+ "bindingDependencies": [
+ "TESTQ5_MISSING",
+ "TESTQ5"
+ ],
+ "missingResponse": {
+ "name": "TESTQ5_MISSING"
+ },
+ "response": {
+ "name": "TESTQ5"
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "km4oej2r",
+ "page": "1",
+ "label": "\"I - \" || \"Test\""
+ }
+ },
+ "conditionFilter": {
+ "value": "true"
+ },
+ "id": "km4ozeq1",
+ "page": "6",
+ "label": "\"➡ \" || \"TestQ5\"",
+ "mandatory": false,
+ "maxLength": 255
+ },
+ {
+ "componentType": "Sequence",
+ "hierarchy": {
+ "sequence": {
+ "id": "COMMENT-SEQ",
+ "page": "7",
+ "label": "\"Commentaire\""
+ }
+ },
+ "conditionFilter": {
+ "value": "true"
+ },
+ "id": "COMMENT-SEQ",
+ "page": "7",
+ "label": "\"Commentaire\""
+ },
+ {
+ "componentType": "Textarea",
+ "bindingDependencies": [
+ "COMMENT_QE"
+ ],
+ "response": {
+ "name": "COMMENT_QE"
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "COMMENT-SEQ",
+ "page": "7",
+ "label": "\"Commentaire\""
+ }
+ },
+ "conditionFilter": {
+ "value": "true"
+ },
+ "id": "COMMENT-QUESTION",
+ "page": "8",
+ "label": "\"Avez-vous des remarques concernant l'enquête ou des commentaires ?\"",
+ "mandatory": false,
+ "maxLength": 2000
+ }
+ ],
+ "pagination": "question",
+ "lunaticModelVersion": "2.2.4",
+ "modele": "TEST",
+ "enoCoreVersion": "2.2.10-dev-mode-parameters",
+ "generatingDate": "29-09-2021 14:54:31",
+ "missing": true,
+ "id": "km4ocme4_lh",
+ "label": "Test",
+ "maxPage": "8"
+}
\ No newline at end of file
diff --git a/src/questionnaire-lunatic/simpsons-question.json b/src/questionnaire-lunatic/simpsons-question.json
new file mode 100644
index 0000000..3227533
--- /dev/null
+++ b/src/questionnaire-lunatic/simpsons-question.json
@@ -0,0 +1,4999 @@
+{
+ "id": "i6vwi2506qf2mms",
+ "modele": "SIMPSONS",
+ "enoCoreVersion": "2.2.9-dev-lunatic-missing_var",
+ "lunaticModelVersion": "2.2.2",
+ "generatingDate": "06-07-2021 15:33:37",
+ "pagination": "question",
+ "maxPage": "38",
+ "label": "Questionnaire SIMPSONS 20201215",
+ "suggesters": {
+ "naf-rev2": {
+ "name": "naf-rev2",
+ "fields": [
+ {
+ "name": "label",
+ "rules": ["[\\w]+"],
+ "language": "French",
+ "min": 3
+ },
+ { "name": "id" }
+ ],
+ "queryParser": {
+ "type": "tokenized",
+ "params": { "language": "French", "pattern": "[\\w.]+" }
+ },
+ "version": "1"
+ }
+ },
+ "components": [
+ {
+ "id": "j6p0ti5h",
+ "componentType": "Sequence",
+ "page": "1",
+ "label": "\"I - Introduction\"",
+ "declarations": [
+ {
+ "id": "j6p0ti5h-d1",
+ "declarationType": "COMMENT",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ }
+ }
+ },
+
+ {
+ "id": "j6p3dkx6",
+ "componentType": "Textarea",
+ "mandatory": true,
+ "page": "2",
+ "maxLength": 500,
+ "label": "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ }
+ },
+ "missingResponse": { "name": "COMMENT_MISSING" },
+ "bindingDependencies": ["COMMENT_MISSING", "COMMENT"],
+ "response": { "name": "COMMENT" }
+ },
+
+ {
+ "id": "j6p0np9q",
+ "componentType": "CheckboxBoolean",
+ "mandatory": false,
+ "page": "3",
+ "label": "\"➡ 2. If you agree to answer this questionnaire, please check the box\"",
+ "declarations": [
+ {
+ "id": "j6p0np9q-kir6xl1e",
+ "declarationType": "COMMENT",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"If not, this is unfortunately the end of this questionnaire.\""
+ }
+ ],
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ }
+ },
+ "missingResponse": { "name": "READY_MISSING" },
+ "bindingDependencies": ["READY_MISSING", "READY"],
+ "response": { "name": "READY" }
+ },
+
+ {
+ "id": "j6p6my1d",
+ "componentType": "FilterDescription",
+ "page": "3",
+ "filterDescription": false,
+ "label": "\"If you are not ready, please go to the end of the questionnaire\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ }
+ }
+ },
+
+ {
+ "id": "j6p0s7o5",
+ "componentType": "Subsequence",
+ "goToPage": "4",
+ "label": "\"General knowledge of the series\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ }
+ },
+
+ {
+ "id": "j3343qhx",
+ "componentType": "Input",
+ "mandatory": false,
+ "page": "4",
+ "maxLength": 30,
+ "label": "\"➡ 3. Who is the producer?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "PRODUCER_MISSING" },
+ "bindingDependencies": ["PRODUCER_MISSING", "PRODUCER"],
+ "response": { "name": "PRODUCER" }
+ },
+
+ {
+ "id": "j6q9h8tj",
+ "componentType": "InputNumber",
+ "mandatory": true,
+ "page": "5",
+ "min": 0,
+ "max": 99,
+ "decimals": 0,
+ "label": "\"➡ 4. What is the current season number?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "SEASON_NUMBER_MISSING" },
+ "bindingDependencies": ["SEASON_NUMBER_MISSING", "SEASON_NUMBER"],
+ "response": { "name": "SEASON_NUMBER" }
+ },
+
+ {
+ "id": "kiq71eoi",
+ "componentType": "Datepicker",
+ "mandatory": false,
+ "page": "6",
+ "min": "1900-01-01",
+ "max": "format-date(current-date(),'[Y0001]-[M01]-[D01]')",
+ "label": "\"➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)\"",
+ "declarations": [
+ {
+ "id": "kiq71eoi-kiq7dsy2",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Please answer with YYYY-MM-DD format\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "DATEFIRST_MISSING" },
+ "bindingDependencies": ["DATEFIRST_MISSING", "DATEFIRST"],
+ "dateFormat": "YYYY-MM-DD",
+ "response": { "name": "DATEFIRST" }
+ },
+
+ {
+ "id": "k5nvty2o",
+ "componentType": "Datepicker",
+ "mandatory": false,
+ "page": "7",
+ "min": "1980-05",
+ "label": "\"➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)\"",
+ "declarations": [
+ {
+ "id": "k5nvty2o-k5nvxld8",
+ "declarationType": "COMMENT",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Please answer with YYYY-MM format\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "DATEYYYYMM_MISSING" },
+ "bindingDependencies": ["DATEYYYYMM_MISSING", "DATEYYYYMM"],
+ "dateFormat": "YYYY-MM",
+ "response": { "name": "DATEYYYYMM" }
+ },
+
+ {
+ "id": "k5nw1fir",
+ "componentType": "Datepicker",
+ "mandatory": false,
+ "page": "8",
+ "min": "1900",
+ "max": "year-from-date(current-date())",
+ "label": "\"➡ 7. When was the first episode of the Simpsons? (format YYYY)\"",
+ "declarations": [
+ {
+ "id": "k5nw1fir-k5nvmx3n",
+ "declarationType": "COMMENT",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Please answer with YYYY format\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "DATEYYYY_MISSING" },
+ "bindingDependencies": ["DATEYYYY_MISSING", "DATEYYYY"],
+ "dateFormat": "YYYY",
+ "response": { "name": "DATEYYYY" }
+ },
+
+ {
+ "id": "k5nw0w05",
+ "componentType": "InputNumber",
+ "mandatory": false,
+ "page": "9",
+ "min": 0,
+ "max": 70,
+ "decimals": 2,
+ "label": "\"➡ 8. How long does an episode last?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "DURATIONH_MISSING" },
+ "bindingDependencies": ["DURATIONH_MISSING", "DURATIONH"],
+ "unit": "heures",
+ "response": { "name": "DURATIONH" }
+ },
+
+ {
+ "id": "k5nvu98z",
+ "componentType": "InputNumber",
+ "mandatory": false,
+ "page": "10",
+ "min": 0,
+ "max": 366,
+ "decimals": 1,
+ "label": "\"➡ 9. How long does it take to write a new episode?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "DURATIOND_MISSING" },
+ "bindingDependencies": ["DURATIOND_MISSING", "DURATIOND"],
+ "unit": "jours",
+ "response": { "name": "DURATIOND" }
+ },
+
+ {
+ "id": "k5nw8ei1",
+ "componentType": "InputNumber",
+ "mandatory": false,
+ "page": "11",
+ "min": 0,
+ "max": 12,
+ "decimals": 0,
+ "label": "\"➡ 10. How long will it take you to watch all the existing episodes?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "DURATIONM_MISSING" },
+ "bindingDependencies": ["DURATIONM_MISSING", "DURATIONM"],
+ "unit": "mois",
+ "response": { "name": "DURATIONM" }
+ },
+
+ {
+ "id": "k5nw9dk4",
+ "componentType": "InputNumber",
+ "mandatory": false,
+ "page": "12",
+ "min": 0,
+ "max": 100,
+ "decimals": 0,
+ "label": "\"➡ 11. For how long have you known the Simpsons family?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "DURATIONY_MISSING" },
+ "bindingDependencies": ["DURATIONY_MISSING", "DURATIONY"],
+ "unit": "années",
+ "response": { "name": "DURATIONY" }
+ },
+
+ {
+ "id": "j6z06z1e",
+ "componentType": "InputNumber",
+ "mandatory": false,
+ "page": "13",
+ "min": 0,
+ "max": 99,
+ "decimals": 1,
+ "label": "\"➡ 15. In your opinion, how much is the part of audience share in US for the 2016 season?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6p0ti5h",
+ "page": "1",
+ "label": "\"I - Introduction\""
+ },
+ "subSequence": {
+ "id": "j6p0s7o5",
+ "page": "4",
+ "label": "\"General knowledge of the series\""
+ }
+ },
+ "missingResponse": { "name": "AUDIENCE_SHARE_MISSING" },
+ "bindingDependencies": ["AUDIENCE_SHARE_MISSING", "AUDIENCE_SHARE"],
+ "unit": "%",
+ "response": { "name": "AUDIENCE_SHARE" }
+ },
+
+ {
+ "id": "j3341528",
+ "componentType": "Sequence",
+ "page": "14",
+ "label": "\"II - Simpsons’ city\"",
+ "declarations": [
+ {
+ "id": "j3341528-d2",
+ "declarationType": "COMMENT",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"This module asks about your general knowledge of the Simpsons city\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j3341528",
+ "page": "14",
+ "label": "\"II - Simpsons’ city\""
+ }
+ }
+ },
+
+ {
+ "id": "j3343clt",
+ "componentType": "Radio",
+ "mandatory": true,
+ "page": "15",
+ "label": "\"➡ 1. In which city do the Simpsons reside?\"",
+ "declarations": [
+ {
+ "id": "j3343clt-d3",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"One possible answer\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j3341528",
+ "page": "14",
+ "label": "\"II - Simpsons’ city\""
+ }
+ },
+ "missingResponse": { "name": "CITY_MISSING" },
+ "bindingDependencies": ["CITY_MISSING", "CITY"],
+ "options": [
+ { "value": "00001", "label": "\"Springfield\"" },
+
+ { "value": "00002", "label": "\"Shelbyville\"" },
+
+ { "value": "03", "label": "\"Seinfeld\"" }
+ ],
+ "response": { "name": "CITY" }
+ },
+
+ {
+ "id": "j6qdfhvw",
+ "componentType": "CheckboxOne",
+ "mandatory": false,
+ "page": "16",
+ "label": "\"➡ 2. Who is the Simpsons city mayor?\"",
+ "declarations": [
+ {
+ "id": "j6qdfhvw-d4",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Only one possible answer\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j3341528",
+ "page": "14",
+ "label": "\"II - Simpsons’ city\""
+ }
+ },
+ "missingResponse": { "name": "MAYOR_MISSING" },
+ "bindingDependencies": ["MAYOR_MISSING", "MAYOR"],
+ "options": [
+ { "value": "1", "label": "\"Constance Harm\"" },
+
+ { "value": "2", "label": "\"Timothy Lovejoy\"" },
+
+ { "value": "3", "label": "\"Joe Quimby\"" },
+
+ { "value": "OT", "label": "\"Other name\"" }
+ ],
+ "response": { "name": "MAYOR" }
+ },
+
+ {
+ "id": "j4nw5cqz",
+ "componentType": "Dropdown",
+ "mandatory": false,
+ "page": "17",
+ "label": "\"➡ 3. In which state do The Simpsons reside?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j3341528",
+ "page": "14",
+ "label": "\"II - Simpsons’ city\""
+ }
+ },
+ "missingResponse": { "name": "STATE_MISSING" },
+ "bindingDependencies": ["STATE_MISSING", "STATE"],
+ "options": [
+ { "value": "1", "label": "\"Washington\"" },
+
+ { "value": "2", "label": "\"Kentucky\"" },
+
+ { "value": "3", "label": "\"Ohio\"" },
+
+ { "value": "4", "label": "\"Maine\"" },
+
+ { "value": "5", "label": "\"North Dakota\"" },
+
+ { "value": "6", "label": "\"Florida\"" },
+
+ { "value": "7", "label": "\"North Takoma\"" },
+
+ { "value": "8", "label": "\"California\"" },
+
+ { "value": "9", "label": "\"Texas\"" },
+
+ { "value": "10", "label": "\"Massachusetts\"" },
+
+ { "value": "11", "label": "\"Nevada\"" },
+
+ { "value": "12", "label": "\"Illinois\"" },
+
+ { "value": "13", "label": "\"Not in any state, you fool!\"" }
+ ],
+ "response": { "name": "STATE" }
+ },
+
+ {
+ "id": "j6qe0h9q",
+ "componentType": "Sequence",
+ "page": "18",
+ "label": "\"III - Characters\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6qe0h9q",
+ "page": "18",
+ "label": "\"III - Characters\""
+ }
+ }
+ },
+
+ {
+ "id": "j334akov",
+ "componentType": "CheckboxGroup",
+ "page": "19",
+ "label": "\"➡ 1. What are the pet names that the Simpsons family had?\"",
+ "declarations": [
+ {
+ "id": "j334akov-d5",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Several possible answers\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6qe0h9q",
+ "page": "18",
+ "label": "\"III - Characters\""
+ }
+ },
+ "missingResponse": { "name": "PET_MISSING" },
+ "bindingDependencies": ["PET_MISSING", "PET1", "PET2", "PET3", "PET4"],
+ "responses": [
+ {
+ "id": "j334akov-QOP-khokqjtw",
+ "label": "\"Santa’s Little Helper\"",
+ "response": { "name": "PET1" }
+ },
+
+ {
+ "id": "j334akov-QOP-khokur7a",
+ "label": "\"Snowball I\"",
+ "response": { "name": "PET2" }
+ },
+
+ {
+ "id": "j334akov-QOP-khol82ux",
+ "label": "\"Coltrane\"",
+ "response": { "name": "PET3" }
+ },
+
+ {
+ "id": "j334akov-QOP-khokqee5",
+ "label": "\"Other name\"",
+ "response": { "name": "PET4" }
+ }
+ ]
+ },
+
+ {
+ "id": "j6p29i81",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "20",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 2. Does Jay like the following ice cream flavours?\"",
+ "declarations": [
+ {
+ "id": "d12-SI",
+ "declarationType": "STATEMENT",
+ "position": "BEFORE_QUESTION_TEXT",
+ "label": "\"Now we are going to know if you think that Jay is a gluton.\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6qe0h9q",
+ "page": "18",
+ "label": "\"III - Characters\""
+ }
+ },
+ "missingResponse": { "name": "ICE_FLAVOUR_MISSING" },
+ "bindingDependencies": [
+ "ICE_FLAVOUR_MISSING",
+ "ICE_FLAVOUR1",
+ "ICE_FLAVOUR2",
+ "ICE_FLAVOUR3",
+ "ICE_FLAVOUR4"
+ ],
+ "cells": [
+ [
+ { "value": "1", "label": "\"Vanilla\"" },
+
+ {
+ "componentType": "Radio",
+ "id": "j6p29i81-QOP-kiq5w99y",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "0", "label": "\"No\"" }
+ ],
+ "response": { "name": "ICE_FLAVOUR1" },
+ "bindingDependencies": ["ICE_FLAVOUR1"]
+ }
+ ],
+
+ [
+ { "value": "2", "label": "\"Strawberry\"" },
+
+ {
+ "componentType": "Radio",
+ "id": "j6p29i81-QOP-kiq5ummf",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "0", "label": "\"No\"" }
+ ],
+ "response": { "name": "ICE_FLAVOUR2" },
+ "bindingDependencies": ["ICE_FLAVOUR2"]
+ }
+ ],
+
+ [
+ { "value": "3", "label": "\"Apple\"" },
+
+ {
+ "componentType": "Radio",
+ "id": "j6p29i81-QOP-kiq5mry5",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "0", "label": "\"No\"" }
+ ],
+ "response": { "name": "ICE_FLAVOUR3" },
+ "bindingDependencies": ["ICE_FLAVOUR3"]
+ }
+ ],
+
+ [
+ { "value": "OT", "label": "\"Other flavour\"" },
+
+ {
+ "componentType": "Radio",
+ "id": "j6p29i81-QOP-kiq5lkr8",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "0", "label": "\"No\"" }
+ ],
+ "response": { "name": "ICE_FLAVOUR4" },
+ "bindingDependencies": ["ICE_FLAVOUR4"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "j6qefnga",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "21",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 3. Which character works in the nuclear power plant?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6qe0h9q",
+ "page": "18",
+ "label": "\"III - Characters\""
+ }
+ },
+ "missingResponse": { "name": "NUCLEAR_CHARACTER_MISSING" },
+ "bindingDependencies": [
+ "NUCLEAR_CHARACTER_MISSING",
+ "NUCLEAR_CHARACTER1",
+ "NUCLEAR_CHARACTER2",
+ "NUCLEAR_CHARACTER3",
+ "NUCLEAR_CHARACTER4"
+ ],
+ "cells": [
+ [
+ { "value": "1", "label": "\"Charles Montgomery Burns\"" },
+
+ {
+ "componentType": "Dropdown",
+ "id": "j6qefnga-QOP-kewva8xg",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "0", "label": "\"No\"" }
+ ],
+ "response": { "name": "NUCLEAR_CHARACTER1" },
+ "bindingDependencies": ["NUCLEAR_CHARACTER1"]
+ }
+ ],
+
+ [
+ { "value": "2", "label": "\"Carl Carlson\"" },
+
+ {
+ "componentType": "Dropdown",
+ "id": "j6qefnga-QOP-kewvj0ad",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "0", "label": "\"No\"" }
+ ],
+ "response": { "name": "NUCLEAR_CHARACTER2" },
+ "bindingDependencies": ["NUCLEAR_CHARACTER2"]
+ }
+ ],
+
+ [
+ { "value": "3", "label": "\"Otto Mann\"" },
+
+ {
+ "componentType": "Dropdown",
+ "id": "j6qefnga-QOP-kewveltm",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "0", "label": "\"No\"" }
+ ],
+ "response": { "name": "NUCLEAR_CHARACTER3" },
+ "bindingDependencies": ["NUCLEAR_CHARACTER3"]
+ }
+ ],
+
+ [
+ { "value": "4", "label": "\"Lenny Leonard\"" },
+
+ {
+ "componentType": "Dropdown",
+ "id": "j6qefnga-QOP-kewvgax4",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "0", "label": "\"No\"" }
+ ],
+ "response": { "name": "NUCLEAR_CHARACTER4" },
+ "bindingDependencies": ["NUCLEAR_CHARACTER4"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "j6yzoc6g",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "22",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 4. In which city each character was born?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6qe0h9q",
+ "page": "18",
+ "label": "\"III - Characters\""
+ }
+ },
+ "missingResponse": { "name": "BIRTH_CHARACTER_MISSING" },
+ "bindingDependencies": [
+ "BIRTH_CHARACTER_MISSING",
+ "BIRTH_CHARACTER1",
+ "BIRTH_CHARACTER2",
+ "BIRTH_CHARACTER3",
+ "BIRTH_CHARACTER4",
+ "BIRTH_CHARACTER5"
+ ],
+ "cells": [
+ [
+ { "value": "1", "label": "\"Selma Bouvier\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6yzoc6g-QOP-kewvjvcs",
+ "options": [
+ { "value": "1", "label": "\"Albuquerque\"" },
+
+ { "value": "2", "label": "\"Springfield\"" },
+
+ { "value": "3", "label": "\"Portland\"" },
+
+ { "value": "4", "label": "\"Shelbyville\"" },
+
+ { "value": "5", "label": "\"Dagstuhl\"" }
+ ],
+ "response": { "name": "BIRTH_CHARACTER1" },
+ "bindingDependencies": ["BIRTH_CHARACTER1"]
+ }
+ ],
+
+ [
+ { "value": "2", "label": "\"Kent Brockman\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6yzoc6g-QOP-kewvhoda",
+ "options": [
+ { "value": "1", "label": "\"Albuquerque\"" },
+
+ { "value": "2", "label": "\"Springfield\"" },
+
+ { "value": "3", "label": "\"Portland\"" },
+
+ { "value": "4", "label": "\"Shelbyville\"" },
+
+ { "value": "5", "label": "\"Dagstuhl\"" }
+ ],
+ "response": { "name": "BIRTH_CHARACTER2" },
+ "bindingDependencies": ["BIRTH_CHARACTER2"]
+ }
+ ],
+
+ [
+ { "value": "3", "label": "\"Milhouse Van Houten\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6yzoc6g-QOP-kewv64s5",
+ "options": [
+ { "value": "1", "label": "\"Albuquerque\"" },
+
+ { "value": "2", "label": "\"Springfield\"" },
+
+ { "value": "3", "label": "\"Portland\"" },
+
+ { "value": "4", "label": "\"Shelbyville\"" },
+
+ { "value": "5", "label": "\"Dagstuhl\"" }
+ ],
+ "response": { "name": "BIRTH_CHARACTER3" },
+ "bindingDependencies": ["BIRTH_CHARACTER3"]
+ }
+ ],
+
+ [
+ { "value": "4", "label": "\"Nelson Muntz\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6yzoc6g-QOP-kewvj21j",
+ "options": [
+ { "value": "1", "label": "\"Albuquerque\"" },
+
+ { "value": "2", "label": "\"Springfield\"" },
+
+ { "value": "3", "label": "\"Portland\"" },
+
+ { "value": "4", "label": "\"Shelbyville\"" },
+
+ { "value": "5", "label": "\"Dagstuhl\"" }
+ ],
+ "response": { "name": "BIRTH_CHARACTER4" },
+ "bindingDependencies": ["BIRTH_CHARACTER4"]
+ }
+ ],
+
+ [
+ { "value": "5", "label": "\"Crazy Cat Lady\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6yzoc6g-QOP-kewva5uf",
+ "options": [
+ { "value": "1", "label": "\"Albuquerque\"" },
+
+ { "value": "2", "label": "\"Springfield\"" },
+
+ { "value": "3", "label": "\"Portland\"" },
+
+ { "value": "4", "label": "\"Shelbyville\"" },
+
+ { "value": "5", "label": "\"Dagstuhl\"" }
+ ],
+ "response": { "name": "BIRTH_CHARACTER5" },
+ "bindingDependencies": ["BIRTH_CHARACTER5"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "j4nw88h2",
+ "componentType": "Sequence",
+ "page": "23",
+ "label": "\"IV - General questions\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j4nw88h2",
+ "page": "23",
+ "label": "\"IV - General questions\""
+ }
+ }
+ },
+
+ {
+ "id": "j6qe237q",
+ "componentType": "Subsequence",
+ "goToPage": "24",
+ "label": "\"Kwik-E-Mart\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j4nw88h2",
+ "page": "23",
+ "label": "\"IV - General questions\""
+ },
+ "subSequence": {
+ "id": "j6qe237q",
+ "page": "24",
+ "label": "\"Kwik-E-Mart\""
+ }
+ }
+ },
+
+ {
+ "id": "j4nwc63q",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "24",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j4nw88h2",
+ "page": "23",
+ "label": "\"IV - General questions\""
+ },
+ "subSequence": {
+ "id": "j6qe237q",
+ "page": "24",
+ "label": "\"Kwik-E-Mart\""
+ }
+ },
+ "missingResponse": { "name": "PERCENTAGE_EXPENSES_MISSING" },
+ "bindingDependencies": [
+ "PERCENTAGE_EXPENSES_MISSING",
+ "PERCENTAGE_EXPENSES11",
+ "PERCENTAGE_EXPENSES21",
+ "PERCENTAGE_EXPENSES31",
+ "PERCENTAGE_EXPENSES41",
+ "PERCENTAGE_EXPENSES51",
+ "PERCENTAGE_EXPENSES61",
+ "PERCENTAGE_EXPENSES71"
+ ],
+ "cells": [
+ [
+ { "headerCell": true, "colspan": 2, "label": "" },
+
+ { "headerCell": true, "label": "\"Percentage\"" }
+ ],
+
+ [
+ { "rowspan": 2, "value": "A", "label": "\"Frozen products\"" },
+
+ { "value": "A1", "label": "\"Ice creams\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 100,
+ "decimals": 1,
+ "id": "j4nwc63q-QOP-kewv2h3o",
+ "unit": "%",
+ "response": { "name": "PERCENTAGE_EXPENSES11" },
+ "bindingDependencies": ["PERCENTAGE_EXPENSES11"]
+ }
+ ],
+
+ [
+ { "value": "A2", "label": "\"Jasper Beardly\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 100,
+ "decimals": 1,
+ "id": "j4nwc63q-QOP-kewvka2j",
+ "unit": "%",
+ "response": { "name": "PERCENTAGE_EXPENSES21" },
+ "bindingDependencies": ["PERCENTAGE_EXPENSES21"]
+ }
+ ],
+
+ [
+ { "rowspan": 3, "value": "B", "label": "\"Meat\"" },
+
+ { "value": "B1", "label": "\"Bacon\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 100,
+ "decimals": 1,
+ "id": "j4nwc63q-QOP-kewv1f2a",
+ "unit": "%",
+ "response": { "name": "PERCENTAGE_EXPENSES31" },
+ "bindingDependencies": ["PERCENTAGE_EXPENSES31"]
+ }
+ ],
+
+ [
+ { "value": "B2", "label": "\"Pork chop\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 100,
+ "decimals": 1,
+ "id": "j4nwc63q-QOP-kewvb2ql",
+ "unit": "%",
+ "response": { "name": "PERCENTAGE_EXPENSES41" },
+ "bindingDependencies": ["PERCENTAGE_EXPENSES41"]
+ }
+ ],
+
+ [
+ { "value": "B3", "label": "\"Chicken\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 100,
+ "decimals": 1,
+ "id": "j4nwc63q-QOP-kewvbxla",
+ "unit": "%",
+ "response": { "name": "PERCENTAGE_EXPENSES51" },
+ "bindingDependencies": ["PERCENTAGE_EXPENSES51"]
+ }
+ ],
+
+ [
+ { "value": "C", "label": "\"Compote\"" },
+
+ { "value": "C1", "label": "\"Powersauce\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 100,
+ "decimals": 1,
+ "id": "j4nwc63q-QOP-kewvkjp0",
+ "unit": "%",
+ "response": { "name": "PERCENTAGE_EXPENSES61" },
+ "bindingDependencies": ["PERCENTAGE_EXPENSES61"]
+ }
+ ],
+
+ [
+ { "colspan": 2, "value": "D", "label": "\"Other\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 100,
+ "decimals": 1,
+ "id": "j4nwc63q-QOP-kewv2cyx",
+ "unit": "%",
+ "response": { "name": "PERCENTAGE_EXPENSES71" },
+ "bindingDependencies": ["PERCENTAGE_EXPENSES71"]
+ }
+ ],
+
+ [
+ { "colspan": 2, "value": "E", "label": "\"Total\"" },
+
+ { "headerCell": false }
+ ]
+ ]
+ },
+
+ {
+ "id": "k9cg2q5t",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "25",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 2. Please specify if Jay has bought each product in his last food shopping\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j4nw88h2",
+ "page": "23",
+ "label": "\"IV - General questions\""
+ },
+ "subSequence": {
+ "id": "j6qe237q",
+ "page": "24",
+ "label": "\"Kwik-E-Mart\""
+ }
+ },
+ "missingResponse": { "name": "LAST_FOOD_SHOPPING_MISSING" },
+ "bindingDependencies": [
+ "LAST_FOOD_SHOPPING_MISSING",
+ "LAST_FOOD_SHOPPING11",
+ "LAST_FOOD_SHOPPING21",
+ "LAST_FOOD_SHOPPING31",
+ "LAST_FOOD_SHOPPING41",
+ "LAST_FOOD_SHOPPING51",
+ "LAST_FOOD_SHOPPING61",
+ "LAST_FOOD_SHOPPING71",
+ "LAST_FOOD_SHOPPING81"
+ ],
+ "cells": [
+ [
+ { "headerCell": true, "colspan": 2, "label": "" },
+
+ { "headerCell": true, "label": "\"In his last food shopping\"" }
+ ],
+
+ [
+ { "rowspan": 2, "value": "A", "label": "\"Frozen products\"" },
+
+ { "value": "A1", "label": "\"Ice creams\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "k9cg2q5t-QOP-kiq6pljq",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "LAST_FOOD_SHOPPING11" },
+ "bindingDependencies": ["LAST_FOOD_SHOPPING11"]
+ }
+ ],
+
+ [
+ { "value": "A2", "label": "\"Jasper Beardly\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "k9cg2q5t-QOP-kiq6mgpv",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "LAST_FOOD_SHOPPING21" },
+ "bindingDependencies": ["LAST_FOOD_SHOPPING21"]
+ }
+ ],
+
+ [
+ { "rowspan": 3, "value": "B", "label": "\"Meat\"" },
+
+ { "value": "B1", "label": "\"Bacon\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "k9cg2q5t-QOP-kiq6pmtz",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "LAST_FOOD_SHOPPING31" },
+ "bindingDependencies": ["LAST_FOOD_SHOPPING31"]
+ }
+ ],
+
+ [
+ { "value": "B2", "label": "\"Pork chop\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "k9cg2q5t-QOP-kiq6k4lf",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "LAST_FOOD_SHOPPING41" },
+ "bindingDependencies": ["LAST_FOOD_SHOPPING41"]
+ }
+ ],
+
+ [
+ { "value": "B3", "label": "\"Chicken\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "k9cg2q5t-QOP-kiq6p70n",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "LAST_FOOD_SHOPPING51" },
+ "bindingDependencies": ["LAST_FOOD_SHOPPING51"]
+ }
+ ],
+
+ [
+ { "value": "C", "label": "\"Compote\"" },
+
+ { "value": "C1", "label": "\"Powersauce\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "k9cg2q5t-QOP-kiq6lh5v",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "LAST_FOOD_SHOPPING61" },
+ "bindingDependencies": ["LAST_FOOD_SHOPPING61"]
+ }
+ ],
+
+ [
+ { "colspan": 2, "value": "D", "label": "\"Other\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "k9cg2q5t-QOP-kiq703te",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "LAST_FOOD_SHOPPING71" },
+ "bindingDependencies": ["LAST_FOOD_SHOPPING71"]
+ }
+ ],
+
+ [
+ { "colspan": 2, "value": "E", "label": "\"Total\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "k9cg2q5t-QOP-kiq6zpd3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "LAST_FOOD_SHOPPING81" },
+ "bindingDependencies": ["LAST_FOOD_SHOPPING81"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "j6qejudb",
+ "componentType": "Subsequence",
+ "goToPage": "26",
+ "label": "\"Clowning\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j4nw88h2",
+ "page": "23",
+ "label": "\"IV - General questions\""
+ },
+ "subSequence": {
+ "id": "j6qejudb",
+ "page": "26",
+ "label": "\"Clowning\""
+ }
+ }
+ },
+
+ {
+ "id": "kbkjvgel",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "26",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 3. Who did these clownings and tell us what you remember?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j4nw88h2",
+ "page": "23",
+ "label": "\"IV - General questions\""
+ },
+ "subSequence": {
+ "id": "j6qejudb",
+ "page": "26",
+ "label": "\"Clowning\""
+ }
+ },
+ "missingResponse": { "name": "CLOWNING_MISSING" },
+ "bindingDependencies": [
+ "CLOWNING_MISSING",
+ "CLOWNING11",
+ "CLOWNING12",
+ "CLOWNING21",
+ "CLOWNING22",
+ "CLOWNING31",
+ "CLOWNING32",
+ "CLOWNING41",
+ "CLOWNING42"
+ ],
+ "cells": [
+ [
+ { "headerCell": true, "label": "" },
+
+ { "headerCell": true, "label": "\"Clowning\"" },
+
+ { "headerCell": true, "label": "\"Remember?\"" }
+ ],
+
+ [
+ { "value": "1", "label": "\"Break the windows of the whole city\"" },
+
+ {
+ "componentType": "Dropdown",
+ "id": "kbkjvgel-QOP-kiq6m5n0",
+ "options": [
+ { "value": "1", "label": "\"Jay\"" },
+
+ { "value": "2", "label": "\"Bart\"" },
+
+ { "value": "3", "label": "\"Krusty the clown\"" },
+
+ { "value": "O", "label": "\"Other\"" }
+ ],
+ "response": { "name": "CLOWNING11" },
+ "bindingDependencies": ["CLOWNING11"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "kbkjvgel-QOP-kiq6qatu",
+ "response": { "name": "CLOWNING12" },
+ "bindingDependencies": ["CLOWNING12"]
+ }
+ ],
+
+ [
+ {
+ "value": "2",
+ "label": "\"Loose the violin of his daughter playing poker\""
+ },
+
+ {
+ "componentType": "Dropdown",
+ "id": "kbkjvgel-QOP-kiq6l29o",
+ "options": [
+ { "value": "1", "label": "\"Jay\"" },
+
+ { "value": "2", "label": "\"Bart\"" },
+
+ { "value": "3", "label": "\"Krusty the clown\"" },
+
+ { "value": "O", "label": "\"Other\"" }
+ ],
+ "response": { "name": "CLOWNING21" },
+ "bindingDependencies": ["CLOWNING21"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "kbkjvgel-QOP-kiq6v4oe",
+ "response": { "name": "CLOWNING22" },
+ "bindingDependencies": ["CLOWNING22"]
+ }
+ ],
+
+ [
+ { "value": "3", "label": "\"Kill Mr Burns\"" },
+
+ {
+ "componentType": "Dropdown",
+ "id": "kbkjvgel-QOP-kiq72biw",
+ "options": [
+ { "value": "1", "label": "\"Jay\"" },
+
+ { "value": "2", "label": "\"Bart\"" },
+
+ { "value": "3", "label": "\"Krusty the clown\"" },
+
+ { "value": "O", "label": "\"Other\"" }
+ ],
+ "response": { "name": "CLOWNING31" },
+ "bindingDependencies": ["CLOWNING31"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "kbkjvgel-QOP-kiq6q4zm",
+ "response": { "name": "CLOWNING32" },
+ "bindingDependencies": ["CLOWNING32"]
+ }
+ ],
+
+ [
+ {
+ "value": "4",
+ "label": "\"Leaving a mechanical object to control the nuclear power plant\""
+ },
+
+ {
+ "componentType": "Dropdown",
+ "id": "kbkjvgel-QOP-kiq6mlan",
+ "options": [
+ { "value": "1", "label": "\"Jay\"" },
+
+ { "value": "2", "label": "\"Bart\"" },
+
+ { "value": "3", "label": "\"Krusty the clown\"" },
+
+ { "value": "O", "label": "\"Other\"" }
+ ],
+ "response": { "name": "CLOWNING41" },
+ "bindingDependencies": ["CLOWNING41"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "kbkjvgel-QOP-kiq6vtud",
+ "response": { "name": "CLOWNING42" },
+ "bindingDependencies": ["CLOWNING42"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "j6qeh91y",
+ "componentType": "Subsequence",
+ "goToPage": "27",
+ "label": "\"Transport\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j4nw88h2",
+ "page": "23",
+ "label": "\"IV - General questions\""
+ },
+ "subSequence": {
+ "id": "j6qeh91y",
+ "page": "27",
+ "label": "\"Transport\""
+ }
+ }
+ },
+
+ {
+ "id": "j6p2lwuj",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "27",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 4. Which of the following means of transport were used by the hero and in which country?\"",
+ "declarations": [
+ {
+ "id": "j6p2lwuj-d10",
+ "declarationType": "INSTRUCTION",
+ "position": "AFTER_QUESTION_TEXT",
+ "label": "\"Several answers possible: check off all the relevant boxes\""
+ }
+ ],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j4nw88h2",
+ "page": "23",
+ "label": "\"IV - General questions\""
+ },
+ "subSequence": {
+ "id": "j6qeh91y",
+ "page": "27",
+ "label": "\"Transport\""
+ }
+ },
+ "missingResponse": { "name": "TRAVEL_MISSING" },
+ "bindingDependencies": [
+ "TRAVEL_MISSING",
+ "TRAVEL11",
+ "TRAVEL12",
+ "TRAVEL13",
+ "TRAVEL14",
+ "TRAVEL15",
+ "TRAVEL16",
+ "TRAVEL21",
+ "TRAVEL22",
+ "TRAVEL23",
+ "TRAVEL24",
+ "TRAVEL25",
+ "TRAVEL26",
+ "TRAVEL31",
+ "TRAVEL32",
+ "TRAVEL33",
+ "TRAVEL34",
+ "TRAVEL35",
+ "TRAVEL36",
+ "TRAVEL41",
+ "TRAVEL42",
+ "TRAVEL43",
+ "TRAVEL44",
+ "TRAVEL45",
+ "TRAVEL46"
+ ],
+ "cells": [
+ [
+ { "headerCell": true, "label": "" },
+
+ { "headerCell": true, "label": "\"Brazil\"" },
+
+ { "headerCell": true, "label": "\"Canada\"" },
+
+ { "headerCell": true, "label": "\"Japan\"" },
+
+ { "headerCell": true, "label": "\"France\"" },
+
+ { "headerCell": true, "label": "\"Other country\"" },
+
+ { "headerCell": true, "label": "\"Other planet\"" }
+ ],
+
+ [
+ { "value": "1", "label": "\"Car\"" },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvm4qg",
+ "response": { "name": "TRAVEL11" },
+ "bindingDependencies": ["TRAVEL11"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewv8wxl",
+ "response": { "name": "TRAVEL12" },
+ "bindingDependencies": ["TRAVEL12"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvcjrn",
+ "response": { "name": "TRAVEL13" },
+ "bindingDependencies": ["TRAVEL13"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvdrv7",
+ "response": { "name": "TRAVEL14" },
+ "bindingDependencies": ["TRAVEL14"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewv226h",
+ "response": { "name": "TRAVEL15" },
+ "bindingDependencies": ["TRAVEL15"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvlchm",
+ "response": { "name": "TRAVEL16" },
+ "bindingDependencies": ["TRAVEL16"]
+ }
+ ],
+
+ [
+ { "value": "2", "label": "\"Bike\"" },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvebem",
+ "response": { "name": "TRAVEL21" },
+ "bindingDependencies": ["TRAVEL21"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewv5u0v",
+ "response": { "name": "TRAVEL22" },
+ "bindingDependencies": ["TRAVEL22"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvdarq",
+ "response": { "name": "TRAVEL23" },
+ "bindingDependencies": ["TRAVEL23"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvc8ft",
+ "response": { "name": "TRAVEL24" },
+ "bindingDependencies": ["TRAVEL24"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvc2li",
+ "response": { "name": "TRAVEL25" },
+ "bindingDependencies": ["TRAVEL25"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvh5fm",
+ "response": { "name": "TRAVEL26" },
+ "bindingDependencies": ["TRAVEL26"]
+ }
+ ],
+
+ [
+ { "value": "3", "label": "\"Skateboard\"" },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewv62xx",
+ "response": { "name": "TRAVEL31" },
+ "bindingDependencies": ["TRAVEL31"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvbiyv",
+ "response": { "name": "TRAVEL32" },
+ "bindingDependencies": ["TRAVEL32"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvcmjn",
+ "response": { "name": "TRAVEL33" },
+ "bindingDependencies": ["TRAVEL33"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvkci5",
+ "response": { "name": "TRAVEL34" },
+ "bindingDependencies": ["TRAVEL34"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewveam7",
+ "response": { "name": "TRAVEL35" },
+ "bindingDependencies": ["TRAVEL35"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewva2r8",
+ "response": { "name": "TRAVEL36" },
+ "bindingDependencies": ["TRAVEL36"]
+ }
+ ],
+
+ [
+ { "value": "4", "label": "\"Plane\"" },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvjcck",
+ "response": { "name": "TRAVEL41" },
+ "bindingDependencies": ["TRAVEL41"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewv91bq",
+ "response": { "name": "TRAVEL42" },
+ "bindingDependencies": ["TRAVEL42"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewvf47u",
+ "response": { "name": "TRAVEL43" },
+ "bindingDependencies": ["TRAVEL43"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewv5hsr",
+ "response": { "name": "TRAVEL44" },
+ "bindingDependencies": ["TRAVEL44"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewva3p8",
+ "response": { "name": "TRAVEL45" },
+ "bindingDependencies": ["TRAVEL45"]
+ },
+
+ {
+ "componentType": "CheckboxBoolean",
+ "id": "j6p2lwuj-QOP-kewve0rb",
+ "response": { "name": "TRAVEL46" },
+ "bindingDependencies": ["TRAVEL46"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "j6qfx9qe",
+ "componentType": "Sequence",
+ "page": "28",
+ "label": "\"V - Favourite characters (dynamic table)\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6qfx9qe",
+ "page": "28",
+ "label": "\"V - Favourite characters (dynamic table)\""
+ }
+ }
+ },
+
+ {
+ "id": "j6qg8rc6",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "29",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 1. Please, complete the following grid with your favourite characters\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6qfx9qe",
+ "page": "28",
+ "label": "\"V - Favourite characters (dynamic table)\""
+ }
+ },
+ "missingResponse": { "name": "FAVOURITE_CHAR_MISSING" },
+ "bindingDependencies": [
+ "FAVOURITE_CHAR_MISSING",
+ "FAVOURITE_CHAR1",
+ "FAVOURITE_CHAR2",
+ "FAVOURITE_CHAR3",
+ "FAVOURITE_CHAR1_1_1",
+ "FAVOURITE_CHAR2_1_2",
+ "FAVOURITE_CHAR3_1_3",
+ "FAVOURITE_CHAR1_2_1",
+ "FAVOURITE_CHAR2_2_2",
+ "FAVOURITE_CHAR3_2_3",
+ "FAVOURITE_CHAR1_3_1",
+ "FAVOURITE_CHAR2_3_2",
+ "FAVOURITE_CHAR3_3_3",
+ "FAVOURITE_CHAR1_4_1",
+ "FAVOURITE_CHAR2_4_2",
+ "FAVOURITE_CHAR3_4_3",
+ "FAVOURITE_CHAR1_5_1",
+ "FAVOURITE_CHAR2_5_2",
+ "FAVOURITE_CHAR3_5_3",
+ "FAVOURITE_CHAR1_6_1",
+ "FAVOURITE_CHAR2_6_2",
+ "FAVOURITE_CHAR3_6_3",
+ "FAVOURITE_CHAR1_7_1",
+ "FAVOURITE_CHAR2_7_2",
+ "FAVOURITE_CHAR3_7_3",
+ "FAVOURITE_CHAR1_8_1",
+ "FAVOURITE_CHAR2_8_2",
+ "FAVOURITE_CHAR3_8_3",
+ "FAVOURITE_CHAR1_9_1",
+ "FAVOURITE_CHAR2_9_2",
+ "FAVOURITE_CHAR3_9_3",
+ "FAVOURITE_CHAR1_10_1",
+ "FAVOURITE_CHAR2_10_2",
+ "FAVOURITE_CHAR3_10_3"
+ ],
+ "lines": { "min": 1, "max": 10 },
+ "cells": [
+ [
+ { "headerCell": true, "label": "\"Name\"" },
+
+ { "headerCell": true, "label": "\"Age\"" },
+
+ { "headerCell": true, "label": "\"Member of the Simpsons family\"" }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_1_1",
+ "response": { "name": "FAVOURITE_CHAR1_1_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_1_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_1_2",
+ "response": { "name": "FAVOURITE_CHAR2_1_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_1_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_1_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_1_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_1_3"]
+ }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_2_1",
+ "response": { "name": "FAVOURITE_CHAR1_2_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_2_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_2_2",
+ "response": { "name": "FAVOURITE_CHAR2_2_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_2_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_2_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_2_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_2_3"]
+ }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_3_1",
+ "response": { "name": "FAVOURITE_CHAR1_3_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_3_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_3_2",
+ "response": { "name": "FAVOURITE_CHAR2_3_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_3_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_3_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_3_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_3_3"]
+ }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_4_1",
+ "response": { "name": "FAVOURITE_CHAR1_4_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_4_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_4_2",
+ "response": { "name": "FAVOURITE_CHAR2_4_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_4_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_4_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_4_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_4_3"]
+ }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_5_1",
+ "response": { "name": "FAVOURITE_CHAR1_5_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_5_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_5_2",
+ "response": { "name": "FAVOURITE_CHAR2_5_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_5_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_5_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_5_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_5_3"]
+ }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_6_1",
+ "response": { "name": "FAVOURITE_CHAR1_6_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_6_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_6_2",
+ "response": { "name": "FAVOURITE_CHAR2_6_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_6_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_6_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_6_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_6_3"]
+ }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_7_1",
+ "response": { "name": "FAVOURITE_CHAR1_7_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_7_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_7_2",
+ "response": { "name": "FAVOURITE_CHAR2_7_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_7_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_7_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_7_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_7_3"]
+ }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_8_1",
+ "response": { "name": "FAVOURITE_CHAR1_8_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_8_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_8_2",
+ "response": { "name": "FAVOURITE_CHAR2_8_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_8_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_8_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_8_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_8_3"]
+ }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_9_1",
+ "response": { "name": "FAVOURITE_CHAR1_9_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_9_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_9_2",
+ "response": { "name": "FAVOURITE_CHAR2_9_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_9_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_9_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_9_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_9_3"]
+ }
+ ],
+
+ [
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7p16z_10_1",
+ "response": { "name": "FAVOURITE_CHAR1_10_1" },
+ "bindingDependencies": ["FAVOURITE_CHAR1_10_1"]
+ },
+
+ {
+ "componentType": "Textarea",
+ "maxLength": 255,
+ "id": "j6qg8rc6-QOP-kiq7kny3_10_2",
+ "response": { "name": "FAVOURITE_CHAR2_10_2" },
+ "bindingDependencies": ["FAVOURITE_CHAR2_10_2"]
+ },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "j6qg8rc6-QOP-kiq7lffy_10_3",
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "2", "label": "\"No\"" },
+
+ { "value": "3", "label": "\"Other\"" }
+ ],
+ "response": { "name": "FAVOURITE_CHAR3_10_3" },
+ "bindingDependencies": ["FAVOURITE_CHAR3_10_3"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "jvxux0mi",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "30",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 2. How has your feeling about the following characters evolved over time?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6qfx9qe",
+ "page": "28",
+ "label": "\"V - Favourite characters (dynamic table)\""
+ }
+ },
+ "missingResponse": { "name": "FEELCHAREV_MISSING" },
+ "bindingDependencies": [
+ "FEELCHAREV_MISSING",
+ "FEELCHAREV1",
+ "FEELCHAREV2",
+ "FEELCHAREV3",
+ "FEELCHAREV4"
+ ],
+ "cells": [
+ [
+ { "value": "1", "label": "\"Jay\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "jvxux0mi-QOP-kiq76emy",
+ "options": [
+ { "value": "1", "label": "\"Up\"" },
+
+ { "value": "2", "label": "\"Down\"" },
+
+ { "value": "3", "label": "\"Steady\"" }
+ ],
+ "response": { "name": "FEELCHAREV1" },
+ "bindingDependencies": ["FEELCHAREV1"]
+ }
+ ],
+
+ [
+ { "value": "2", "label": "\"Bart\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "jvxux0mi-QOP-kiq6zv60",
+ "options": [
+ { "value": "1", "label": "\"Up\"" },
+
+ { "value": "2", "label": "\"Down\"" },
+
+ { "value": "3", "label": "\"Steady\"" }
+ ],
+ "response": { "name": "FEELCHAREV2" },
+ "bindingDependencies": ["FEELCHAREV2"]
+ }
+ ],
+
+ [
+ { "value": "3", "label": "\"Krusty the clown\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "jvxux0mi-QOP-kiq7bgk3",
+ "options": [
+ { "value": "1", "label": "\"Up\"" },
+
+ { "value": "2", "label": "\"Down\"" },
+
+ { "value": "3", "label": "\"Steady\"" }
+ ],
+ "response": { "name": "FEELCHAREV3" },
+ "bindingDependencies": ["FEELCHAREV3"]
+ }
+ ],
+
+ [
+ { "value": "O", "label": "\"Other\"" },
+
+ {
+ "componentType": "CheckboxOne",
+ "id": "jvxux0mi-QOP-kiq6ync3",
+ "options": [
+ { "value": "1", "label": "\"Up\"" },
+
+ { "value": "2", "label": "\"Down\"" },
+
+ { "value": "3", "label": "\"Steady\"" }
+ ],
+ "response": { "name": "FEELCHAREV4" },
+ "bindingDependencies": ["FEELCHAREV4"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "jvxwy68n",
+ "componentType": "Table",
+ "mandatory": false,
+ "page": "31",
+ "positioning": "HORIZONTAL",
+ "label": "\"➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6qfx9qe",
+ "page": "28",
+ "label": "\"V - Favourite characters (dynamic table)\""
+ }
+ },
+ "missingResponse": { "name": "LEAVDURATION_MISSING" },
+ "bindingDependencies": [
+ "LEAVDURATION_MISSING",
+ "LEAVDURATION11",
+ "LEAVDURATION12",
+ "LEAVDURATION21",
+ "LEAVDURATION22",
+ "LEAVDURATION31",
+ "LEAVDURATION32",
+ "LEAVDURATION41",
+ "LEAVDURATION42",
+ "LEAVDURATION51",
+ "LEAVDURATION52"
+ ],
+ "cells": [
+ [
+ { "headerCell": true, "label": "" },
+
+ { "headerCell": true, "label": "\"Days\"" },
+
+ { "headerCell": true, "label": "\"Unit\"" }
+ ],
+
+ [
+ { "value": "1", "label": "\"Leave with pay\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 365,
+ "decimals": 0,
+ "id": "jvxwy68n-QOP-kewv511d",
+ "response": { "name": "LEAVDURATION11" },
+ "bindingDependencies": ["LEAVDURATION11"]
+ },
+
+ {
+ "componentType": "Dropdown",
+ "id": "jvxwy68n-QOP-kewv20qg",
+ "options": [
+ { "value": "1", "label": "\"Working Days\"" },
+
+ { "value": "2", "label": "\"Calendar days\"" }
+ ],
+ "response": { "name": "LEAVDURATION12" },
+ "bindingDependencies": ["LEAVDURATION12"]
+ }
+ ],
+
+ [
+ { "value": "2", "label": "\"Public holiday\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 365,
+ "decimals": 0,
+ "id": "jvxwy68n-QOP-kewv67nj",
+ "response": { "name": "LEAVDURATION21" },
+ "bindingDependencies": ["LEAVDURATION21"]
+ },
+
+ {
+ "componentType": "Dropdown",
+ "id": "jvxwy68n-QOP-kewvizdm",
+ "options": [
+ { "value": "1", "label": "\"Working Days\"" },
+
+ { "value": "2", "label": "\"Calendar days\"" }
+ ],
+ "response": { "name": "LEAVDURATION22" },
+ "bindingDependencies": ["LEAVDURATION22"]
+ }
+ ],
+
+ [
+ { "value": "3", "label": "\"Sick leave\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 365,
+ "decimals": 0,
+ "id": "jvxwy68n-QOP-kewv23wm",
+ "response": { "name": "LEAVDURATION31" },
+ "bindingDependencies": ["LEAVDURATION31"]
+ },
+
+ {
+ "componentType": "Dropdown",
+ "id": "jvxwy68n-QOP-kewv9jcl",
+ "options": [
+ { "value": "1", "label": "\"Working Days\"" },
+
+ { "value": "2", "label": "\"Calendar days\"" }
+ ],
+ "response": { "name": "LEAVDURATION32" },
+ "bindingDependencies": ["LEAVDURATION32"]
+ }
+ ],
+
+ [
+ { "value": "4", "label": "\"Maternity/paternity leave\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 365,
+ "decimals": 0,
+ "id": "jvxwy68n-QOP-kewv2jks",
+ "response": { "name": "LEAVDURATION41" },
+ "bindingDependencies": ["LEAVDURATION41"]
+ },
+
+ {
+ "componentType": "Dropdown",
+ "id": "jvxwy68n-QOP-kewvf0gf",
+ "options": [
+ { "value": "1", "label": "\"Working Days\"" },
+
+ { "value": "2", "label": "\"Calendar days\"" }
+ ],
+ "response": { "name": "LEAVDURATION42" },
+ "bindingDependencies": ["LEAVDURATION42"]
+ }
+ ],
+
+ [
+ { "value": "5", "label": "\"Other type\"" },
+
+ {
+ "componentType": "InputNumber",
+ "min": 0,
+ "max": 365,
+ "decimals": 0,
+ "id": "jvxwy68n-QOP-kewvl896",
+ "response": { "name": "LEAVDURATION51" },
+ "bindingDependencies": ["LEAVDURATION51"]
+ },
+
+ {
+ "componentType": "Dropdown",
+ "id": "jvxwy68n-QOP-kewvalmd",
+ "options": [
+ { "value": "1", "label": "\"Working Days\"" },
+
+ { "value": "2", "label": "\"Calendar days\"" }
+ ],
+ "response": { "name": "LEAVDURATION52" },
+ "bindingDependencies": ["LEAVDURATION52"]
+ }
+ ]
+ ]
+ },
+
+ {
+ "id": "kiq5mr0b",
+ "componentType": "Sequence",
+ "page": "32",
+ "label": "\"VI - Favourite characters (Loop)\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kiq5mr0b",
+ "page": "32",
+ "label": "\"VI - Favourite characters (Loop)\""
+ }
+ }
+ },
+
+ {
+ "id": "kiq612ky",
+ "componentType": "InputNumber",
+ "mandatory": false,
+ "page": "33",
+ "min": 0,
+ "max": 20,
+ "decimals": 0,
+ "label": "\"➡ 1. How many characters from the Simpsons family could you precisely describe?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kiq5mr0b",
+ "page": "32",
+ "label": "\"VI - Favourite characters (Loop)\""
+ }
+ },
+ "missingResponse": { "name": "NB_CHAR_MISSING" },
+ "bindingDependencies": ["NB_CHAR_MISSING", "NB_CHAR"],
+ "response": { "name": "NB_CHAR" }
+ },
+
+ {
+ "id": "kiq7bjam",
+ "componentType": "Loop",
+ "page": "34",
+ "depth": 1,
+ "paginatedLoop": false,
+ "label": "\"Add a character\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kiq5mr0b",
+ "page": "32",
+ "label": "\"VI - Favourite characters (Loop)\""
+ }
+ },
+ "bindingDependencies": [
+ "NB_CHAR",
+ "LOOP_kiq7bjam_MISSING",
+ "NAME_CHAR",
+ "AGE_CHAR"
+ ],
+ "loopDependencies": ["NB_CHAR"],
+ "lines": { "min": "1", "max": "cast(NB_CHAR,integer)" },
+ "components": [
+ {
+ "id": "kiq5u8d5",
+ "componentType": "Subsequence",
+ "page": "34",
+ "goToPage": "34",
+ "label": "\"Description of each character\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kiq5mr0b",
+ "page": "32",
+ "label": "\"VI - Favourite characters (Loop)\""
+ },
+ "subSequence": {
+ "id": "kiq5u8d5",
+ "page": "34",
+ "label": "\"Description of each character\""
+ }
+ }
+ },
+
+ {
+ "id": "kiq66gtw",
+ "componentType": "Input",
+ "mandatory": false,
+ "page": "34",
+ "maxLength": 30,
+ "label": "\"➡ 2. What is the first name of this character?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kiq5mr0b",
+ "page": "32",
+ "label": "\"VI - Favourite characters (Loop)\""
+ },
+ "subSequence": {
+ "id": "kiq5u8d5",
+ "page": "34",
+ "label": "\"Description of each character\""
+ }
+ },
+ "bindingDependencies": ["NAME_CHAR"],
+ "response": { "name": "NAME_CHAR" }
+ },
+
+ {
+ "id": "kiq5r8wu",
+ "componentType": "InputNumber",
+ "mandatory": false,
+ "page": "34",
+ "min": 0,
+ "max": 120,
+ "decimals": 0,
+ "label": "\"➡ 3. How old is this character in the first episode of the Simpsons family?\"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kiq5mr0b",
+ "page": "32",
+ "label": "\"VI - Favourite characters (Loop)\""
+ },
+ "subSequence": {
+ "id": "kiq5u8d5",
+ "page": "34",
+ "label": "\"Description of each character\""
+ }
+ },
+ "bindingDependencies": ["AGE_CHAR"],
+ "response": { "name": "AGE_CHAR" }
+ }
+ ]
+ },
+
+ {
+ "id": "kiq7cbgo",
+ "componentType": "Loop",
+ "page": "35",
+ "maxPage": "3",
+ "iterations": "count(NAME_CHAR)",
+ "depth": 1,
+ "paginatedLoop": true,
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "bindingDependencies": [
+ "NAME_CHAR",
+ "FAVCHAR_MISSING",
+ "MEMORY_CHAR_MISSING",
+ "FAVCHAR",
+ "MEMORY_CHAR"
+ ],
+ "loopDependencies": ["NAME_CHAR", "AGE_CHAR"],
+ "components": [
+ {
+ "id": "kiq5xw5p",
+ "componentType": "Sequence",
+ "page": "35.1",
+ "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kiq5xw5p",
+ "page": "35.1",
+ "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \""
+ }
+ },
+ "bindingDependencies": ["NAME_CHAR"]
+ },
+
+ {
+ "id": "kiq65x3c",
+ "componentType": "CheckboxOne",
+ "mandatory": false,
+ "page": "35.2",
+ "label": "\"➡ 1. Is character named \" || cast(cast(NAME_CHAR,string),string) || \" your favourite one ? \"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kiq5xw5p",
+ "page": "35.1",
+ "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \""
+ }
+ },
+ "missingResponse": { "name": "FAVCHAR_MISSING" },
+ "bindingDependencies": ["NAME_CHAR", "FAVCHAR_MISSING", "FAVCHAR"],
+ "options": [
+ { "value": "1", "label": "\"Yes\"" },
+
+ { "value": "0", "label": "\"No\"" }
+ ],
+ "response": { "name": "FAVCHAR" }
+ },
+
+ {
+ "id": "kiq651zv",
+ "componentType": "Textarea",
+ "mandatory": false,
+ "page": "35.3",
+ "maxLength": 255,
+ "label": "\"➡ 2. What is your best memory about character named \" || cast(cast(NAME_CHAR,string),string) || \" ? \"",
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "hierarchy": {
+ "sequence": {
+ "id": "kiq5xw5p",
+ "page": "35.1",
+ "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \""
+ }
+ },
+ "missingResponse": { "name": "MEMORY_CHAR_MISSING" },
+ "bindingDependencies": [
+ "NAME_CHAR",
+ "MEMORY_CHAR_MISSING",
+ "MEMORY_CHAR"
+ ],
+ "response": { "name": "MEMORY_CHAR" }
+ }
+ ]
+ },
+ {
+ "id": "NAF",
+ "componentType": "Suggester",
+ "mandatory": false,
+ "label": "Test Suggester",
+ "storeName": "naf-rev2",
+ "bindingDependencies": ["NAF"],
+ "conditionFilter": {
+ "value": "(not(cast(READY,integer) <> 1))",
+ "bindingDependencies": ["READY"]
+ },
+ "response": {
+ "name": "NAF"
+ },
+ "page": "36"
+ },
+ {
+ "id": "j6z12s2d",
+ "componentType": "Sequence",
+ "page": "37",
+ "label": "\"VIII - Comment\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6z12s2d",
+ "page": "36",
+ "label": "\"VIII - Comment\""
+ }
+ }
+ },
+
+ {
+ "id": "j6z0z3us",
+ "componentType": "Textarea",
+ "mandatory": false,
+ "page": "38",
+ "maxLength": 255,
+ "label": "\"➡ 1. Do you have any comment about the survey?\"",
+ "conditionFilter": { "value": "true" },
+ "hierarchy": {
+ "sequence": {
+ "id": "j6z12s2d",
+ "page": "36",
+ "label": "\"VIII - Comment\""
+ }
+ },
+ "missingResponse": { "name": "SURVEY_COMMENT_MISSING" },
+ "bindingDependencies": ["SURVEY_COMMENT_MISSING", "SURVEY_COMMENT"],
+ "response": { "name": "SURVEY_COMMENT" }
+ }
+ ],
+ "variables": [
+ {
+ "variableType": "COLLECTED",
+ "name": "NAF",
+ "componentRef": "NAF",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_1_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_1_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_1_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_2_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_2_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_2_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_3_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_3_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_3_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_4_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_4_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_4_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_5_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_5_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_5_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_6_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_6_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_6_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_7_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_7_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_7_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_8_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_8_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_8_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_9_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_9_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_9_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1_10_1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2_10_2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3_10_3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ { "variableType": "EXTERNAL", "name": "LAST_BROADCAST", "value": null },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMMENT",
+ "componentRef": "j6p3dkx6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "COMMENT_MISSING",
+ "componentRef": "j6p3dkx6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "READY",
+ "componentRef": "j6p0np9q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "READY_MISSING",
+ "componentRef": "j6p0np9q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRODUCER",
+ "componentRef": "j3343qhx",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PRODUCER_MISSING",
+ "componentRef": "j3343qhx",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SEASON_NUMBER",
+ "componentRef": "j6q9h8tj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SEASON_NUMBER_MISSING",
+ "componentRef": "j6q9h8tj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DATEFIRST",
+ "componentRef": "kiq71eoi",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DATEFIRST_MISSING",
+ "componentRef": "kiq71eoi",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DATEYYYYMM",
+ "componentRef": "k5nvty2o",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DATEYYYYMM_MISSING",
+ "componentRef": "k5nvty2o",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DATEYYYY",
+ "componentRef": "k5nw1fir",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DATEYYYY_MISSING",
+ "componentRef": "k5nw1fir",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DURATIONH",
+ "componentRef": "k5nw0w05",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DURATIONH_MISSING",
+ "componentRef": "k5nw0w05",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DURATIOND",
+ "componentRef": "k5nvu98z",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DURATIOND_MISSING",
+ "componentRef": "k5nvu98z",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DURATIONM",
+ "componentRef": "k5nw8ei1",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DURATIONM_MISSING",
+ "componentRef": "k5nw8ei1",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DURATIONY",
+ "componentRef": "k5nw9dk4",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "DURATIONY_MISSING",
+ "componentRef": "k5nw9dk4",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "AUDIENCE_SHARE",
+ "componentRef": "j6z06z1e",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "AUDIENCE_SHARE_MISSING",
+ "componentRef": "j6z06z1e",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CITY",
+ "componentRef": "j3343clt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CITY_MISSING",
+ "componentRef": "j3343clt",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "MAYOR",
+ "componentRef": "j6qdfhvw",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "MAYOR_MISSING",
+ "componentRef": "j6qdfhvw",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "STATE",
+ "componentRef": "j4nw5cqz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "STATE_MISSING",
+ "componentRef": "j4nw5cqz",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PET1",
+ "componentRef": "j334akov",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PET2",
+ "componentRef": "j334akov",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PET3",
+ "componentRef": "j334akov",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PET4",
+ "componentRef": "j334akov",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PET_MISSING",
+ "componentRef": "j334akov",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ICE_FLAVOUR_MISSING",
+ "componentRef": "j6p29i81",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ICE_FLAVOUR1",
+ "componentRef": "j6p29i81",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ICE_FLAVOUR2",
+ "componentRef": "j6p29i81",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ICE_FLAVOUR3",
+ "componentRef": "j6p29i81",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "ICE_FLAVOUR4",
+ "componentRef": "j6p29i81",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUCLEAR_CHARACTER_MISSING",
+ "componentRef": "j6qefnga",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUCLEAR_CHARACTER1",
+ "componentRef": "j6qefnga",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUCLEAR_CHARACTER2",
+ "componentRef": "j6qefnga",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUCLEAR_CHARACTER3",
+ "componentRef": "j6qefnga",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NUCLEAR_CHARACTER4",
+ "componentRef": "j6qefnga",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "BIRTH_CHARACTER_MISSING",
+ "componentRef": "j6yzoc6g",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "BIRTH_CHARACTER1",
+ "componentRef": "j6yzoc6g",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "BIRTH_CHARACTER2",
+ "componentRef": "j6yzoc6g",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "BIRTH_CHARACTER3",
+ "componentRef": "j6yzoc6g",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "BIRTH_CHARACTER4",
+ "componentRef": "j6yzoc6g",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "BIRTH_CHARACTER5",
+ "componentRef": "j6yzoc6g",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PERCENTAGE_EXPENSES_MISSING",
+ "componentRef": "j4nwc63q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PERCENTAGE_EXPENSES11",
+ "componentRef": "j4nwc63q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PERCENTAGE_EXPENSES21",
+ "componentRef": "j4nwc63q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PERCENTAGE_EXPENSES31",
+ "componentRef": "j4nwc63q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PERCENTAGE_EXPENSES41",
+ "componentRef": "j4nwc63q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PERCENTAGE_EXPENSES51",
+ "componentRef": "j4nwc63q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PERCENTAGE_EXPENSES61",
+ "componentRef": "j4nwc63q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "PERCENTAGE_EXPENSES71",
+ "componentRef": "j4nwc63q",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LAST_FOOD_SHOPPING_MISSING",
+ "componentRef": "k9cg2q5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LAST_FOOD_SHOPPING11",
+ "componentRef": "k9cg2q5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LAST_FOOD_SHOPPING21",
+ "componentRef": "k9cg2q5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LAST_FOOD_SHOPPING31",
+ "componentRef": "k9cg2q5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LAST_FOOD_SHOPPING41",
+ "componentRef": "k9cg2q5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LAST_FOOD_SHOPPING51",
+ "componentRef": "k9cg2q5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LAST_FOOD_SHOPPING61",
+ "componentRef": "k9cg2q5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LAST_FOOD_SHOPPING71",
+ "componentRef": "k9cg2q5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LAST_FOOD_SHOPPING81",
+ "componentRef": "k9cg2q5t",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLOWNING_MISSING",
+ "componentRef": "kbkjvgel",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLOWNING11",
+ "componentRef": "kbkjvgel",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLOWNING12",
+ "componentRef": "kbkjvgel",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLOWNING21",
+ "componentRef": "kbkjvgel",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLOWNING22",
+ "componentRef": "kbkjvgel",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLOWNING31",
+ "componentRef": "kbkjvgel",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLOWNING32",
+ "componentRef": "kbkjvgel",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLOWNING41",
+ "componentRef": "kbkjvgel",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "CLOWNING42",
+ "componentRef": "kbkjvgel",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL_MISSING",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL11",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL12",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL13",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL14",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL15",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL16",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL21",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL22",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL23",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL24",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL25",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL26",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL31",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL32",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL33",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL34",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL35",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL36",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL41",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL42",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL43",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL44",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL45",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "TRAVEL46",
+ "componentRef": "j6p2lwuj",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR_MISSING",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR1",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR2",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVOURITE_CHAR3",
+ "componentRef": "j6qg8rc6",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FEELCHAREV_MISSING",
+ "componentRef": "jvxux0mi",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FEELCHAREV1",
+ "componentRef": "jvxux0mi",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FEELCHAREV2",
+ "componentRef": "jvxux0mi",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FEELCHAREV3",
+ "componentRef": "jvxux0mi",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FEELCHAREV4",
+ "componentRef": "jvxux0mi",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION_MISSING",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION11",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION12",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION21",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION22",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION31",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION32",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION41",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION42",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION51",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LEAVDURATION52",
+ "componentRef": "jvxwy68n",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NB_CHAR",
+ "componentRef": "kiq612ky",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NB_CHAR_MISSING",
+ "componentRef": "kiq612ky",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "LOOP_kiq7bjam_MISSING",
+ "componentRef": "kiq7bjam",
+ "values": {
+ "PREVIOUS": [null],
+ "COLLECTED": [null],
+ "FORCED": [null],
+ "EDITED": [null],
+ "INPUTED": [null]
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "NAME_CHAR",
+ "componentRef": "kiq7bjam",
+ "values": {
+ "PREVIOUS": [null],
+ "COLLECTED": [null],
+ "FORCED": [null],
+ "EDITED": [null],
+ "INPUTED": [null]
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "AGE_CHAR",
+ "componentRef": "kiq7bjam",
+ "values": {
+ "PREVIOUS": [null],
+ "COLLECTED": [null],
+ "FORCED": [null],
+ "EDITED": [null],
+ "INPUTED": [null]
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVCHAR",
+ "componentRef": "kiq7cbgo",
+ "values": {
+ "PREVIOUS": [null],
+ "COLLECTED": [null],
+ "FORCED": [null],
+ "EDITED": [null],
+ "INPUTED": [null]
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "FAVCHAR_MISSING",
+ "componentRef": "kiq7cbgo",
+ "values": {
+ "PREVIOUS": [null],
+ "COLLECTED": [null],
+ "FORCED": [null],
+ "EDITED": [null],
+ "INPUTED": [null]
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "MEMORY_CHAR",
+ "componentRef": "kiq7cbgo",
+ "values": {
+ "PREVIOUS": [null],
+ "COLLECTED": [null],
+ "FORCED": [null],
+ "EDITED": [null],
+ "INPUTED": [null]
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "MEMORY_CHAR_MISSING",
+ "componentRef": "kiq7cbgo",
+ "values": {
+ "PREVIOUS": [null],
+ "COLLECTED": [null],
+ "FORCED": [null],
+ "EDITED": [null],
+ "INPUTED": [null]
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SURVEY_COMMENT",
+ "componentRef": "j6z0z3us",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ },
+
+ {
+ "variableType": "COLLECTED",
+ "name": "SURVEY_COMMENT_MISSING",
+ "componentRef": "j6z0z3us",
+ "values": {
+ "PREVIOUS": null,
+ "COLLECTED": null,
+ "FORCED": null,
+ "EDITED": null,
+ "INPUTED": null
+ }
+ }
+ ]
+}
diff --git a/src/utils/data-sync/component.js b/src/utils/data-sync/component.js
deleted file mode 100644
index 3e2c0aa..0000000
--- a/src/utils/data-sync/component.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import { useState, useEffect } from 'react';
-import API from 'api';
-
-const SyncDataFromAPI = ({ children }) => {
- const [loading, setLoading] = useState(true);
- const [error, setError] = useState('');
-
- useEffect(() => {
- API.getDataFromApiOld({ setError }).then(() => {
- setLoading(false);
- });
- }, [setError, setLoading]);
-
- if (error) console.log({ error });
-
- if (loading) console.log({ loading });
-
- return children;
-};
-
-export default SyncDataFromAPI;
diff --git a/src/utils/hook/fetch-hook.js b/src/utils/hook/fetch-hook.js
new file mode 100644
index 0000000..85ed98a
--- /dev/null
+++ b/src/utils/hook/fetch-hook.js
@@ -0,0 +1,22 @@
+import { useState, useEffect } from 'react';
+
+export const useFetch = (getter, params) => {
+ const [data, setData] = useState(null);
+ const [loading, setLoading] = useState(true);
+ const [error, setError] = useState('');
+
+ useEffect(() => {
+ getter(params)
+ .then((c) => {
+ setData(c);
+ })
+ .then(() => {
+ setLoading(false);
+ })
+ .catch((err) => {
+ setError(err);
+ });
+ }, [getter, params]);
+
+ return { data, loading, error };
+};
diff --git a/src/utils/hook/paradatahook.js b/src/utils/hook/paradatahook.js
new file mode 100644
index 0000000..e99119d
--- /dev/null
+++ b/src/utils/hook/paradatahook.js
@@ -0,0 +1,19 @@
+import { useState, useEffect } from 'react';
+import API from "api"
+export const usePostData = (data) => {
+ const [loading, setLoading] = useState(true);
+ const [error, setError] = useState('');
+
+ useEffect(() => {
+ API.postData(data)
+ .then(() => {
+ setLoading(false);
+ })
+ .catch((err) => {
+ setError(err);
+ });
+ }, [data]);
+
+ return { loading, error };
+
+}
\ No newline at end of file
diff --git a/src/utils/survey-unit/calendarUrl.js b/src/utils/survey-unit/calendarUrl.js
new file mode 100644
index 0000000..9f38aae
--- /dev/null
+++ b/src/utils/survey-unit/calendarUrl.js
@@ -0,0 +1,9 @@
+import DCalendar from 'dictionary/components/common/survey-unit-card/calendar';
+
+export const makeGoogleCalendarUrl = (person,surveyUnit) => {
+ const eventName = `${DCalendar.eventName} ${person.firstName} ${person.lastName}`;
+ const location = `${surveyUnit.address.l4} ${surveyUnit.address.l6}`;
+ const details = 'Add the link of the UE on APP';
+
+ return `${DCalendar.baseUrl}&text=${eventName}&location=${location}&details=${details}`;
+};
diff --git a/src/utils/survey-unit/favoriteNumber.js b/src/utils/survey-unit/favoriteNumber.js
new file mode 100644
index 0000000..e864b8d
--- /dev/null
+++ b/src/utils/survey-unit/favoriteNumber.js
@@ -0,0 +1,8 @@
+export const getFavoriteNumber = (phoneNumbers) => {
+ // TODO Control -> If no favorite
+ // and format to display
+ if (phoneNumbers) {
+ const phone = phoneNumbers.find((p) => p.favorite === true);
+ return phone.number;
+ }
+};
diff --git a/src/utils/survey-unit/index.js b/src/utils/survey-unit/index.js
index 9540a87..ec0f84c 100644
--- a/src/utils/survey-unit/index.js
+++ b/src/utils/survey-unit/index.js
@@ -1,3 +1,5 @@
-export { getPrivilegedPerson, getFavoriteNumber } from './surveyUnit';
+export { getFavoriteNumber } from './favoriteNumber';
export { sortOnColumnCompareFunction } from './order';
export { applyFilters } from './filter';
+export { getPrivilegedPerson } from './privilegedPerson';
+export { makeGoogleCalendarUrl } from './calendarUrl';
diff --git a/src/utils/survey-unit/order.js b/src/utils/survey-unit/order.js
index 5ed54cc..d3321ba 100644
--- a/src/utils/survey-unit/order.js
+++ b/src/utils/survey-unit/order.js
@@ -1,5 +1,5 @@
import { formatDistanceStrict } from 'date-fns';
-import { getPrivilegedPerson } from './surveyUnit';
+import { getPrivilegedPerson } from './privilegedPerson';
export const sortOnColumnCompareFunction = (criteria) => {
let compareFunction;
@@ -16,7 +16,7 @@ export const sortOnColumnCompareFunction = (criteria) => {
const ssechSortFunction = (a, b) =>
a.sampleIdentifiers.ssech - b.sampleIdentifiers.ssech;
-
+
const prioritySortFunction = (a, b) => b.priority - a.priority;
const campaignSortFunction = (a, b) => a.campaign.localeCompare(b.campaign);
diff --git a/src/utils/survey-unit/surveyUnit.js b/src/utils/survey-unit/privilegedPerson.js
similarity index 53%
rename from src/utils/survey-unit/surveyUnit.js
rename to src/utils/survey-unit/privilegedPerson.js
index 06750c3..18e18a9 100644
--- a/src/utils/survey-unit/surveyUnit.js
+++ b/src/utils/survey-unit/privilegedPerson.js
@@ -11,12 +11,3 @@ export const getPrivilegedPerson = (persons) => {
}
}
};
-
-export const getFavoriteNumber = (phoneNumbers) => {
- // TODO Control -> If no favorite
- // and format to display
- if (phoneNumbers) {
- const phone = phoneNumbers.find((p) => p.favorite === true);
- return phone.number;
- }
-};
diff --git a/yarn.lock b/yarn.lock
deleted file mode 100644
index ea1502c..0000000
--- a/yarn.lock
+++ /dev/null
@@ -1,15035 +0,0 @@
-# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-# yarn lockfile v1
-
-
-"@babel/code-frame@7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
- integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
- dependencies:
- "@babel/highlight" "^7.10.4"
-
-"@babel/code-frame@7.12.11":
- version "7.12.11"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
- integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
- dependencies:
- "@babel/highlight" "^7.10.4"
-
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.3":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb"
- integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==
- dependencies:
- "@babel/highlight" "^7.14.5"
-
-"@babel/compat-data@^7.12.1", "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.15.0":
- version "7.15.0"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176"
- integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==
-
-"@babel/core@7.12.3":
- version "7.12.3"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.3.tgz#1b436884e1e3bff6fb1328dc02b208759de92ad8"
- integrity sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==
- dependencies:
- "@babel/code-frame" "^7.10.4"
- "@babel/generator" "^7.12.1"
- "@babel/helper-module-transforms" "^7.12.1"
- "@babel/helpers" "^7.12.1"
- "@babel/parser" "^7.12.3"
- "@babel/template" "^7.10.4"
- "@babel/traverse" "^7.12.1"
- "@babel/types" "^7.12.1"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.1"
- json5 "^2.1.2"
- lodash "^4.17.19"
- resolve "^1.3.2"
- semver "^5.4.1"
- source-map "^0.5.0"
-
-"@babel/core@7.12.9":
- version "7.12.9"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
- integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
- dependencies:
- "@babel/code-frame" "^7.10.4"
- "@babel/generator" "^7.12.5"
- "@babel/helper-module-transforms" "^7.12.1"
- "@babel/helpers" "^7.12.5"
- "@babel/parser" "^7.12.7"
- "@babel/template" "^7.12.7"
- "@babel/traverse" "^7.12.9"
- "@babel/types" "^7.12.7"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.1"
- json5 "^2.1.2"
- lodash "^4.17.19"
- resolve "^1.3.2"
- semver "^5.4.1"
- source-map "^0.5.0"
-
-"@babel/core@^7.1.0", "@babel/core@^7.12.10", "@babel/core@^7.12.3", "@babel/core@^7.7.5", "@babel/core@^7.8.4":
- version "7.15.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.15.5.tgz#f8ed9ace730722544609f90c9bb49162dc3bf5b9"
- integrity sha512-pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg==
- dependencies:
- "@babel/code-frame" "^7.14.5"
- "@babel/generator" "^7.15.4"
- "@babel/helper-compilation-targets" "^7.15.4"
- "@babel/helper-module-transforms" "^7.15.4"
- "@babel/helpers" "^7.15.4"
- "@babel/parser" "^7.15.5"
- "@babel/template" "^7.15.4"
- "@babel/traverse" "^7.15.4"
- "@babel/types" "^7.15.4"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.1.2"
- semver "^6.3.0"
- source-map "^0.5.0"
-
-"@babel/generator@^7.12.1", "@babel/generator@^7.12.11", "@babel/generator@^7.12.5", "@babel/generator@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.4.tgz#85acb159a267ca6324f9793986991ee2022a05b0"
- integrity sha512-d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw==
- dependencies:
- "@babel/types" "^7.15.4"
- jsesc "^2.5.1"
- source-map "^0.5.0"
-
-"@babel/helper-annotate-as-pure@^7.14.5", "@babel/helper-annotate-as-pure@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz#3d0e43b00c5e49fdb6c57e421601a7a658d5f835"
- integrity sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz#21ad815f609b84ee0e3058676c33cf6d1670525f"
- integrity sha512-P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==
- dependencies:
- "@babel/helper-explode-assignable-expression" "^7.15.4"
- "@babel/types" "^7.15.4"
-
-"@babel/helper-compilation-targets@^7.12.1", "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz#cf6d94f30fbefc139123e27dd6b02f65aeedb7b9"
- integrity sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==
- dependencies:
- "@babel/compat-data" "^7.15.0"
- "@babel/helper-validator-option" "^7.14.5"
- browserslist "^4.16.6"
- semver "^6.3.0"
-
-"@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz#7f977c17bd12a5fba363cb19bea090394bf37d2e"
- integrity sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.15.4"
- "@babel/helper-function-name" "^7.15.4"
- "@babel/helper-member-expression-to-functions" "^7.15.4"
- "@babel/helper-optimise-call-expression" "^7.15.4"
- "@babel/helper-replace-supers" "^7.15.4"
- "@babel/helper-split-export-declaration" "^7.15.4"
-
-"@babel/helper-create-regexp-features-plugin@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4"
- integrity sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.14.5"
- regexpu-core "^4.7.1"
-
-"@babel/helper-define-polyfill-provider@^0.1.5":
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz#3c2f91b7971b9fc11fe779c945c014065dea340e"
- integrity sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==
- dependencies:
- "@babel/helper-compilation-targets" "^7.13.0"
- "@babel/helper-module-imports" "^7.12.13"
- "@babel/helper-plugin-utils" "^7.13.0"
- "@babel/traverse" "^7.13.0"
- debug "^4.1.1"
- lodash.debounce "^4.0.8"
- resolve "^1.14.2"
- semver "^6.1.2"
-
-"@babel/helper-define-polyfill-provider@^0.2.2":
- version "0.2.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6"
- integrity sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==
- dependencies:
- "@babel/helper-compilation-targets" "^7.13.0"
- "@babel/helper-module-imports" "^7.12.13"
- "@babel/helper-plugin-utils" "^7.13.0"
- "@babel/traverse" "^7.13.0"
- debug "^4.1.1"
- lodash.debounce "^4.0.8"
- resolve "^1.14.2"
- semver "^6.1.2"
-
-"@babel/helper-explode-assignable-expression@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz#f9aec9d219f271eaf92b9f561598ca6b2682600c"
- integrity sha512-J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-function-name@^7.14.5", "@babel/helper-function-name@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc"
- integrity sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==
- dependencies:
- "@babel/helper-get-function-arity" "^7.15.4"
- "@babel/template" "^7.15.4"
- "@babel/types" "^7.15.4"
-
-"@babel/helper-get-function-arity@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b"
- integrity sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-hoist-variables@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df"
- integrity sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-member-expression-to-functions@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef"
- integrity sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5", "@babel/helper-module-imports@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f"
- integrity sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.4.tgz#962cc629a7f7f9a082dd62d0307fa75fe8788d7c"
- integrity sha512-9fHHSGE9zTC++KuXLZcB5FKgvlV83Ox+NLUmQTawovwlJ85+QMhk1CnVk406CQVj97LaWod6KVjl2Sfgw9Aktw==
- dependencies:
- "@babel/helper-module-imports" "^7.15.4"
- "@babel/helper-replace-supers" "^7.15.4"
- "@babel/helper-simple-access" "^7.15.4"
- "@babel/helper-split-export-declaration" "^7.15.4"
- "@babel/helper-validator-identifier" "^7.14.9"
- "@babel/template" "^7.15.4"
- "@babel/traverse" "^7.15.4"
- "@babel/types" "^7.15.4"
-
-"@babel/helper-optimise-call-expression@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171"
- integrity sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-plugin-utils@7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
- integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
-
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9"
- integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==
-
-"@babel/helper-remap-async-to-generator@^7.14.5", "@babel/helper-remap-async-to-generator@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz#2637c0731e4c90fbf58ac58b50b2b5a192fc970f"
- integrity sha512-v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.15.4"
- "@babel/helper-wrap-function" "^7.15.4"
- "@babel/types" "^7.15.4"
-
-"@babel/helper-replace-supers@^7.14.5", "@babel/helper-replace-supers@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz#52a8ab26ba918c7f6dee28628b07071ac7b7347a"
- integrity sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==
- dependencies:
- "@babel/helper-member-expression-to-functions" "^7.15.4"
- "@babel/helper-optimise-call-expression" "^7.15.4"
- "@babel/traverse" "^7.15.4"
- "@babel/types" "^7.15.4"
-
-"@babel/helper-simple-access@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b"
- integrity sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-skip-transparent-expression-wrappers@^7.12.1", "@babel/helper-skip-transparent-expression-wrappers@^7.14.5", "@babel/helper-skip-transparent-expression-wrappers@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz#707dbdba1f4ad0fa34f9114fc8197aec7d5da2eb"
- integrity sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-split-export-declaration@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257"
- integrity sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==
- dependencies:
- "@babel/types" "^7.15.4"
-
-"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9":
- version "7.14.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz#6654d171b2024f6d8ee151bf2509699919131d48"
- integrity sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==
-
-"@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3"
- integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==
-
-"@babel/helper-wrap-function@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz#6f754b2446cfaf3d612523e6ab8d79c27c3a3de7"
- integrity sha512-Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==
- dependencies:
- "@babel/helper-function-name" "^7.15.4"
- "@babel/template" "^7.15.4"
- "@babel/traverse" "^7.15.4"
- "@babel/types" "^7.15.4"
-
-"@babel/helpers@^7.12.1", "@babel/helpers@^7.12.5", "@babel/helpers@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.4.tgz#5f40f02050a3027121a3cf48d497c05c555eaf43"
- integrity sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==
- dependencies:
- "@babel/template" "^7.15.4"
- "@babel/traverse" "^7.15.4"
- "@babel/types" "^7.15.4"
-
-"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
- integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==
- dependencies:
- "@babel/helper-validator-identifier" "^7.14.5"
- chalk "^2.0.0"
- js-tokens "^4.0.0"
-
-"@babel/parser@^7.1.0", "@babel/parser@^7.12.11", "@babel/parser@^7.12.3", "@babel/parser@^7.12.7", "@babel/parser@^7.15.4", "@babel/parser@^7.15.5", "@babel/parser@^7.7.0":
- version "7.15.6"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.6.tgz#043b9aa3c303c0722e5377fef9197f4cf1796549"
- integrity sha512-S/TSCcsRuCkmpUuoWijua0Snt+f3ewU/8spLo+4AXJCZfT0bVCzLD5MuOKdrx0mlAptbKzn5AdgEIIKXxXkz9Q==
-
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz#dbdeabb1e80f622d9f0b583efb2999605e0a567e"
- integrity sha512-eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.15.4"
- "@babel/plugin-proposal-optional-chaining" "^7.14.5"
-
-"@babel/plugin-proposal-async-generator-functions@^7.12.1", "@babel/plugin-proposal-async-generator-functions@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.4.tgz#f82aabe96c135d2ceaa917feb9f5fca31635277e"
- integrity sha512-2zt2g5vTXpMC3OmK6uyjvdXptbhBXfA77XGrd3gh93zwG8lZYBLOBImiGBEG0RANu3JqKEACCz5CGk73OJROBw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-remap-async-to-generator" "^7.15.4"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
-
-"@babel/plugin-proposal-class-properties@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de"
- integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.12.1"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e"
- integrity sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-proposal-class-static-block@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz#3e7ca6128453c089e8b477a99f970c63fc1cb8d7"
- integrity sha512-M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.15.4"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
-
-"@babel/plugin-proposal-decorators@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz#59271439fed4145456c41067450543aee332d15f"
- integrity sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.12.1"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-decorators" "^7.12.1"
-
-"@babel/plugin-proposal-decorators@^7.12.12":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.15.4.tgz#fb55442bc83ab4d45dda76b91949706bf22881d2"
- integrity sha512-WNER+YLs7avvRukEddhu5PSfSaMMimX2xBFgLQS7Bw16yrUxJGWidO9nQp+yLy9MVybg5Ba3BlhAw+BkdhpDmg==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.15.4"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-decorators" "^7.14.5"
-
-"@babel/plugin-proposal-dynamic-import@^7.12.1", "@babel/plugin-proposal-dynamic-import@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz#0c6617df461c0c1f8fff3b47cd59772360101d2c"
- integrity sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
-
-"@babel/plugin-proposal-export-default-from@^7.12.1":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.14.5.tgz#8931a6560632c650f92a8e5948f6e73019d6d321"
- integrity sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-export-default-from" "^7.14.5"
-
-"@babel/plugin-proposal-export-namespace-from@^7.12.1", "@babel/plugin-proposal-export-namespace-from@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz#dbad244310ce6ccd083072167d8cea83a52faf76"
- integrity sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-
-"@babel/plugin-proposal-json-strings@^7.12.1", "@babel/plugin-proposal-json-strings@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz#38de60db362e83a3d8c944ac858ddf9f0c2239eb"
- integrity sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
-
-"@babel/plugin-proposal-logical-assignment-operators@^7.12.1", "@babel/plugin-proposal-logical-assignment-operators@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz#6e6229c2a99b02ab2915f82571e0cc646a40c738"
- integrity sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c"
- integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1", "@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz#ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6"
- integrity sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
-
-"@babel/plugin-proposal-numeric-separator@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz#0e2c6774c4ce48be412119b4d693ac777f7685a6"
- integrity sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-
-"@babel/plugin-proposal-numeric-separator@^7.12.1", "@babel/plugin-proposal-numeric-separator@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz#83631bf33d9a51df184c2102a069ac0c58c05f18"
- integrity sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-
-"@babel/plugin-proposal-object-rest-spread@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069"
- integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
- "@babel/plugin-transform-parameters" "^7.12.1"
-
-"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.15.6":
- version "7.15.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz#ef68050c8703d07b25af402cb96cf7f34a68ed11"
- integrity sha512-qtOHo7A1Vt+O23qEAX+GdBpqaIuD3i9VRrWgCJeq7WO6H2d14EK3q11urj5Te2MAeK97nMiIdRpwd/ST4JFbNg==
- dependencies:
- "@babel/compat-data" "^7.15.0"
- "@babel/helper-compilation-targets" "^7.15.4"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-transform-parameters" "^7.15.4"
-
-"@babel/plugin-proposal-optional-catch-binding@^7.12.1", "@babel/plugin-proposal-optional-catch-binding@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz#939dd6eddeff3a67fdf7b3f044b5347262598c3c"
- integrity sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-
-"@babel/plugin-proposal-optional-chaining@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz#cce122203fc8a32794296fc377c6dedaf4363797"
- integrity sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
-
-"@babel/plugin-proposal-optional-chaining@^7.12.1", "@babel/plugin-proposal-optional-chaining@^7.12.7", "@babel/plugin-proposal-optional-chaining@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz#fa83651e60a360e3f13797eef00b8d519695b603"
- integrity sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
-
-"@babel/plugin-proposal-private-methods@^7.12.1", "@babel/plugin-proposal-private-methods@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz#37446495996b2945f30f5be5b60d5e2aa4f5792d"
- integrity sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-proposal-private-property-in-object@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz#55c5e3b4d0261fd44fe637e3f624cfb0f484e3e5"
- integrity sha512-X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.15.4"
- "@babel/helper-create-class-features-plugin" "^7.15.4"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
-
-"@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz#0f95ee0e757a5d647f378daa0eca7e93faa8bbe8"
- integrity sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4":
- version "7.8.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
- integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-bigint@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
- integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-class-properties@^7.12.1", "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
- integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
-
-"@babel/plugin-syntax-class-static-block@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
- integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-decorators@^7.12.1", "@babel/plugin-syntax-decorators@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.14.5.tgz#eafb9c0cbe09c8afeb964ba3a7bbd63945a72f20"
- integrity sha512-c4sZMRWL4GSvP1EXy0woIP7m4jkVcEuG8R1TOZxPBPtp4FSM/kiPZub9UIs/Jrb5ZAOzvTUSGYrWsrSu1JvoPw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
- integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-export-default-from@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.14.5.tgz#cdfa9d43d2b2c89b6f1af3e83518e8c8b9ed0dbc"
- integrity sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-export-namespace-from@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
- integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz#2ff654999497d7d7d142493260005263731da180"
- integrity sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-import-meta@^7.8.3":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
- integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
- integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-jsx@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926"
- integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-jsx@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz#000e2e25d8673cce49300517a3eda44c263e4201"
- integrity sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
- integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
- integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
- integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
- integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
- integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
- integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-private-property-in-object@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
- integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-top-level-await@^7.12.1", "@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
- integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-typescript@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716"
- integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-arrow-functions@^7.12.1", "@babel/plugin-transform-arrow-functions@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a"
- integrity sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-async-to-generator@^7.12.1", "@babel/plugin-transform-async-to-generator@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz#72c789084d8f2094acb945633943ef8443d39e67"
- integrity sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==
- dependencies:
- "@babel/helper-module-imports" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-remap-async-to-generator" "^7.14.5"
-
-"@babel/plugin-transform-block-scoped-functions@^7.12.1", "@babel/plugin-transform-block-scoped-functions@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4"
- integrity sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-block-scoping@^7.12.1", "@babel/plugin-transform-block-scoping@^7.12.12", "@babel/plugin-transform-block-scoping@^7.15.3":
- version "7.15.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz#94c81a6e2fc230bcce6ef537ac96a1e4d2b3afaf"
- integrity sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-classes@^7.12.1", "@babel/plugin-transform-classes@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz#50aee17aaf7f332ae44e3bce4c2e10534d5d3bf1"
- integrity sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.15.4"
- "@babel/helper-function-name" "^7.15.4"
- "@babel/helper-optimise-call-expression" "^7.15.4"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-replace-supers" "^7.15.4"
- "@babel/helper-split-export-declaration" "^7.15.4"
- globals "^11.1.0"
-
-"@babel/plugin-transform-computed-properties@^7.12.1", "@babel/plugin-transform-computed-properties@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f"
- integrity sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-destructuring@^7.12.1", "@babel/plugin-transform-destructuring@^7.14.7":
- version "7.14.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz#0ad58ed37e23e22084d109f185260835e5557576"
- integrity sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz#2f6bf76e46bdf8043b4e7e16cf24532629ba0c7a"
- integrity sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-duplicate-keys@^7.12.1", "@babel/plugin-transform-duplicate-keys@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz#365a4844881bdf1501e3a9f0270e7f0f91177954"
- integrity sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-exponentiation-operator@^7.12.1", "@babel/plugin-transform-exponentiation-operator@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz#5154b8dd6a3dfe6d90923d61724bd3deeb90b493"
- integrity sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==
- dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-flow-strip-types@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz#8430decfa7eb2aea5414ed4a3fa6e1652b7d77c4"
- integrity sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-flow" "^7.12.1"
-
-"@babel/plugin-transform-flow-strip-types@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.14.5.tgz#0dc9c1d11dcdc873417903d6df4bed019ef0f85e"
- integrity sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-flow" "^7.14.5"
-
-"@babel/plugin-transform-for-of@^7.12.1", "@babel/plugin-transform-for-of@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz#25c62cce2718cfb29715f416e75d5263fb36a8c2"
- integrity sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-function-name@^7.12.1", "@babel/plugin-transform-function-name@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2"
- integrity sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==
- dependencies:
- "@babel/helper-function-name" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-literals@^7.12.1", "@babel/plugin-transform-literals@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78"
- integrity sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-member-expression-literals@^7.12.1", "@babel/plugin-transform-member-expression-literals@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7"
- integrity sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-modules-amd@^7.12.1", "@babel/plugin-transform-modules-amd@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz#4fd9ce7e3411cb8b83848480b7041d83004858f7"
- integrity sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==
- dependencies:
- "@babel/helper-module-transforms" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
- babel-plugin-dynamic-import-node "^2.3.3"
-
-"@babel/plugin-transform-modules-commonjs@^7.12.1", "@babel/plugin-transform-modules-commonjs@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz#8201101240eabb5a76c08ef61b2954f767b6b4c1"
- integrity sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==
- dependencies:
- "@babel/helper-module-transforms" "^7.15.4"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-simple-access" "^7.15.4"
- babel-plugin-dynamic-import-node "^2.3.3"
-
-"@babel/plugin-transform-modules-systemjs@^7.12.1", "@babel/plugin-transform-modules-systemjs@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz#b42890c7349a78c827719f1d2d0cd38c7d268132"
- integrity sha512-fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==
- dependencies:
- "@babel/helper-hoist-variables" "^7.15.4"
- "@babel/helper-module-transforms" "^7.15.4"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-validator-identifier" "^7.14.9"
- babel-plugin-dynamic-import-node "^2.3.3"
-
-"@babel/plugin-transform-modules-umd@^7.12.1", "@babel/plugin-transform-modules-umd@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz#fb662dfee697cce274a7cda525190a79096aa6e0"
- integrity sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==
- dependencies:
- "@babel/helper-module-transforms" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1", "@babel/plugin-transform-named-capturing-groups-regex@^7.14.9":
- version "7.14.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz#c68f5c5d12d2ebaba3762e57c2c4f6347a46e7b2"
- integrity sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.14.5"
-
-"@babel/plugin-transform-new-target@^7.12.1", "@babel/plugin-transform-new-target@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz#31bdae8b925dc84076ebfcd2a9940143aed7dbf8"
- integrity sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-object-super@^7.12.1", "@babel/plugin-transform-object-super@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45"
- integrity sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-replace-supers" "^7.14.5"
-
-"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.15.4":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz#5f2285cc3160bf48c8502432716b48504d29ed62"
- integrity sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-property-literals@^7.12.1", "@babel/plugin-transform-property-literals@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34"
- integrity sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-react-constant-elements@^7.12.1":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.14.5.tgz#41790d856f7c5cec82d2bcf5d0e5064d682522ed"
- integrity sha512-NBqLEx1GxllIOXJInJAQbrnwwYJsV3WaMHIcOwD8rhYS0AabTWn7kHdHgPgu5RmHLU0q4DMxhAMu8ue/KampgQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-react-display-name@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz#1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d"
- integrity sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-react-display-name@^7.12.1", "@babel/plugin-transform-react-display-name@^7.14.5":
- version "7.15.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz#6aaac6099f1fcf6589d35ae6be1b6e10c8c602b9"
- integrity sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-react-jsx-development@^7.12.1", "@babel/plugin-transform-react-jsx-development@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.14.5.tgz#1a6c73e2f7ed2c42eebc3d2ad60b0c7494fcb9af"
- integrity sha512-rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ==
- dependencies:
- "@babel/plugin-transform-react-jsx" "^7.14.5"
-
-"@babel/plugin-transform-react-jsx-self@^7.12.1":
- version "7.14.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.9.tgz#33041e665453391eb6ee54a2ecf3ba1d46bd30f4"
- integrity sha512-Fqqu0f8zv9W+RyOnx29BX/RlEsBRANbOf5xs5oxb2aHP4FKbLXxIaVPUiCti56LAR1IixMH4EyaixhUsKqoBHw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-react-jsx-source@^7.12.1":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.5.tgz#79f728e60e6dbd31a2b860b0bf6c9765918acf1d"
- integrity sha512-1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-react-jsx@^7.12.1", "@babel/plugin-transform-react-jsx@^7.12.12", "@babel/plugin-transform-react-jsx@^7.14.5":
- version "7.14.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz#3314b2163033abac5200a869c4de242cd50a914c"
- integrity sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.14.5"
- "@babel/helper-module-imports" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-jsx" "^7.14.5"
- "@babel/types" "^7.14.9"
-
-"@babel/plugin-transform-react-pure-annotations@^7.12.1", "@babel/plugin-transform-react-pure-annotations@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.14.5.tgz#18de612b84021e3a9802cbc212c9d9f46d0d11fc"
- integrity sha512-3X4HpBJimNxW4rhUy/SONPyNQHp5YRr0HhJdT2OH1BRp0of7u3Dkirc7x9FRJMKMqTBI079VZ1hzv7Ouuz///g==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-regenerator@^7.12.1", "@babel/plugin-transform-regenerator@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz#9676fd5707ed28f522727c5b3c0aa8544440b04f"
- integrity sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==
- dependencies:
- regenerator-transform "^0.14.2"
-
-"@babel/plugin-transform-reserved-words@^7.12.1", "@babel/plugin-transform-reserved-words@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz#c44589b661cfdbef8d4300dcc7469dffa92f8304"
- integrity sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-runtime@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz#04b792057eb460389ff6a4198e377614ea1e7ba5"
- integrity sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==
- dependencies:
- "@babel/helper-module-imports" "^7.12.1"
- "@babel/helper-plugin-utils" "^7.10.4"
- resolve "^1.8.1"
- semver "^5.5.1"
-
-"@babel/plugin-transform-shorthand-properties@^7.12.1", "@babel/plugin-transform-shorthand-properties@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58"
- integrity sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-spread@^7.12.1", "@babel/plugin-transform-spread@^7.14.6":
- version "7.14.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz#6bd40e57fe7de94aa904851963b5616652f73144"
- integrity sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
-
-"@babel/plugin-transform-sticky-regex@^7.12.1", "@babel/plugin-transform-sticky-regex@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz#5b617542675e8b7761294381f3c28c633f40aeb9"
- integrity sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-template-literals@^7.12.1", "@babel/plugin-transform-template-literals@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93"
- integrity sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-typeof-symbol@^7.12.1", "@babel/plugin-transform-typeof-symbol@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz#39af2739e989a2bd291bf6b53f16981423d457d4"
- integrity sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-typescript@^7.12.1", "@babel/plugin-transform-typescript@^7.15.0":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.4.tgz#db7a062dcf8be5fc096bc0eeb40a13fbfa1fa251"
- integrity sha512-sM1/FEjwYjXvMwu1PJStH11kJ154zd/lpY56NQJ5qH2D0mabMv1CAy/kdvS9RP4Xgfj9fBBA3JiSLdDHgXdzOA==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.15.4"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/plugin-syntax-typescript" "^7.14.5"
-
-"@babel/plugin-transform-unicode-escapes@^7.12.1", "@babel/plugin-transform-unicode-escapes@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz#9d4bd2a681e3c5d7acf4f57fa9e51175d91d0c6b"
- integrity sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-unicode-regex@^7.12.1", "@babel/plugin-transform-unicode-regex@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz#4cd09b6c8425dd81255c7ceb3fb1836e7414382e"
- integrity sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.14.5"
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/preset-env@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.1.tgz#9c7e5ca82a19efc865384bb4989148d2ee5d7ac2"
- integrity sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==
- dependencies:
- "@babel/compat-data" "^7.12.1"
- "@babel/helper-compilation-targets" "^7.12.1"
- "@babel/helper-module-imports" "^7.12.1"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-validator-option" "^7.12.1"
- "@babel/plugin-proposal-async-generator-functions" "^7.12.1"
- "@babel/plugin-proposal-class-properties" "^7.12.1"
- "@babel/plugin-proposal-dynamic-import" "^7.12.1"
- "@babel/plugin-proposal-export-namespace-from" "^7.12.1"
- "@babel/plugin-proposal-json-strings" "^7.12.1"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
- "@babel/plugin-proposal-numeric-separator" "^7.12.1"
- "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
- "@babel/plugin-proposal-optional-catch-binding" "^7.12.1"
- "@babel/plugin-proposal-optional-chaining" "^7.12.1"
- "@babel/plugin-proposal-private-methods" "^7.12.1"
- "@babel/plugin-proposal-unicode-property-regex" "^7.12.1"
- "@babel/plugin-syntax-async-generators" "^7.8.0"
- "@babel/plugin-syntax-class-properties" "^7.12.1"
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
- "@babel/plugin-syntax-json-strings" "^7.8.0"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
- "@babel/plugin-syntax-top-level-await" "^7.12.1"
- "@babel/plugin-transform-arrow-functions" "^7.12.1"
- "@babel/plugin-transform-async-to-generator" "^7.12.1"
- "@babel/plugin-transform-block-scoped-functions" "^7.12.1"
- "@babel/plugin-transform-block-scoping" "^7.12.1"
- "@babel/plugin-transform-classes" "^7.12.1"
- "@babel/plugin-transform-computed-properties" "^7.12.1"
- "@babel/plugin-transform-destructuring" "^7.12.1"
- "@babel/plugin-transform-dotall-regex" "^7.12.1"
- "@babel/plugin-transform-duplicate-keys" "^7.12.1"
- "@babel/plugin-transform-exponentiation-operator" "^7.12.1"
- "@babel/plugin-transform-for-of" "^7.12.1"
- "@babel/plugin-transform-function-name" "^7.12.1"
- "@babel/plugin-transform-literals" "^7.12.1"
- "@babel/plugin-transform-member-expression-literals" "^7.12.1"
- "@babel/plugin-transform-modules-amd" "^7.12.1"
- "@babel/plugin-transform-modules-commonjs" "^7.12.1"
- "@babel/plugin-transform-modules-systemjs" "^7.12.1"
- "@babel/plugin-transform-modules-umd" "^7.12.1"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1"
- "@babel/plugin-transform-new-target" "^7.12.1"
- "@babel/plugin-transform-object-super" "^7.12.1"
- "@babel/plugin-transform-parameters" "^7.12.1"
- "@babel/plugin-transform-property-literals" "^7.12.1"
- "@babel/plugin-transform-regenerator" "^7.12.1"
- "@babel/plugin-transform-reserved-words" "^7.12.1"
- "@babel/plugin-transform-shorthand-properties" "^7.12.1"
- "@babel/plugin-transform-spread" "^7.12.1"
- "@babel/plugin-transform-sticky-regex" "^7.12.1"
- "@babel/plugin-transform-template-literals" "^7.12.1"
- "@babel/plugin-transform-typeof-symbol" "^7.12.1"
- "@babel/plugin-transform-unicode-escapes" "^7.12.1"
- "@babel/plugin-transform-unicode-regex" "^7.12.1"
- "@babel/preset-modules" "^0.1.3"
- "@babel/types" "^7.12.1"
- core-js-compat "^3.6.2"
- semver "^5.5.0"
-
-"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.12.11", "@babel/preset-env@^7.8.4":
- version "7.15.6"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.15.6.tgz#0f3898db9d63d320f21b17380d8462779de57659"
- integrity sha512-L+6jcGn7EWu7zqaO2uoTDjjMBW+88FXzV8KvrBl2z6MtRNxlsmUNRlZPaNNPUTgqhyC5DHNFk/2Jmra+ublZWw==
- dependencies:
- "@babel/compat-data" "^7.15.0"
- "@babel/helper-compilation-targets" "^7.15.4"
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-validator-option" "^7.14.5"
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.15.4"
- "@babel/plugin-proposal-async-generator-functions" "^7.15.4"
- "@babel/plugin-proposal-class-properties" "^7.14.5"
- "@babel/plugin-proposal-class-static-block" "^7.15.4"
- "@babel/plugin-proposal-dynamic-import" "^7.14.5"
- "@babel/plugin-proposal-export-namespace-from" "^7.14.5"
- "@babel/plugin-proposal-json-strings" "^7.14.5"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.14.5"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5"
- "@babel/plugin-proposal-numeric-separator" "^7.14.5"
- "@babel/plugin-proposal-object-rest-spread" "^7.15.6"
- "@babel/plugin-proposal-optional-catch-binding" "^7.14.5"
- "@babel/plugin-proposal-optional-chaining" "^7.14.5"
- "@babel/plugin-proposal-private-methods" "^7.14.5"
- "@babel/plugin-proposal-private-property-in-object" "^7.15.4"
- "@babel/plugin-proposal-unicode-property-regex" "^7.14.5"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
- "@babel/plugin-syntax-class-properties" "^7.12.13"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
- "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
- "@babel/plugin-syntax-top-level-await" "^7.14.5"
- "@babel/plugin-transform-arrow-functions" "^7.14.5"
- "@babel/plugin-transform-async-to-generator" "^7.14.5"
- "@babel/plugin-transform-block-scoped-functions" "^7.14.5"
- "@babel/plugin-transform-block-scoping" "^7.15.3"
- "@babel/plugin-transform-classes" "^7.15.4"
- "@babel/plugin-transform-computed-properties" "^7.14.5"
- "@babel/plugin-transform-destructuring" "^7.14.7"
- "@babel/plugin-transform-dotall-regex" "^7.14.5"
- "@babel/plugin-transform-duplicate-keys" "^7.14.5"
- "@babel/plugin-transform-exponentiation-operator" "^7.14.5"
- "@babel/plugin-transform-for-of" "^7.15.4"
- "@babel/plugin-transform-function-name" "^7.14.5"
- "@babel/plugin-transform-literals" "^7.14.5"
- "@babel/plugin-transform-member-expression-literals" "^7.14.5"
- "@babel/plugin-transform-modules-amd" "^7.14.5"
- "@babel/plugin-transform-modules-commonjs" "^7.15.4"
- "@babel/plugin-transform-modules-systemjs" "^7.15.4"
- "@babel/plugin-transform-modules-umd" "^7.14.5"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.9"
- "@babel/plugin-transform-new-target" "^7.14.5"
- "@babel/plugin-transform-object-super" "^7.14.5"
- "@babel/plugin-transform-parameters" "^7.15.4"
- "@babel/plugin-transform-property-literals" "^7.14.5"
- "@babel/plugin-transform-regenerator" "^7.14.5"
- "@babel/plugin-transform-reserved-words" "^7.14.5"
- "@babel/plugin-transform-shorthand-properties" "^7.14.5"
- "@babel/plugin-transform-spread" "^7.14.6"
- "@babel/plugin-transform-sticky-regex" "^7.14.5"
- "@babel/plugin-transform-template-literals" "^7.14.5"
- "@babel/plugin-transform-typeof-symbol" "^7.14.5"
- "@babel/plugin-transform-unicode-escapes" "^7.14.5"
- "@babel/plugin-transform-unicode-regex" "^7.14.5"
- "@babel/preset-modules" "^0.1.4"
- "@babel/types" "^7.15.6"
- babel-plugin-polyfill-corejs2 "^0.2.2"
- babel-plugin-polyfill-corejs3 "^0.2.2"
- babel-plugin-polyfill-regenerator "^0.2.2"
- core-js-compat "^3.16.0"
- semver "^6.3.0"
-
-"@babel/preset-flow@^7.12.1":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.14.5.tgz#a1810b0780c8b48ab0bece8e7ab8d0d37712751c"
- integrity sha512-pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-validator-option" "^7.14.5"
- "@babel/plugin-transform-flow-strip-types" "^7.14.5"
-
-"@babel/preset-modules@^0.1.3", "@babel/preset-modules@^0.1.4":
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
- integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
- "@babel/plugin-transform-dotall-regex" "^7.4.4"
- "@babel/types" "^7.4.4"
- esutils "^2.0.2"
-
-"@babel/preset-react@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.1.tgz#7f022b13f55b6dd82f00f16d1c599ae62985358c"
- integrity sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-transform-react-display-name" "^7.12.1"
- "@babel/plugin-transform-react-jsx" "^7.12.1"
- "@babel/plugin-transform-react-jsx-development" "^7.12.1"
- "@babel/plugin-transform-react-jsx-self" "^7.12.1"
- "@babel/plugin-transform-react-jsx-source" "^7.12.1"
- "@babel/plugin-transform-react-pure-annotations" "^7.12.1"
-
-"@babel/preset-react@^7.12.10", "@babel/preset-react@^7.12.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.14.5.tgz#0fbb769513f899c2c56f3a882fa79673c2d4ab3c"
- integrity sha512-XFxBkjyObLvBaAvkx1Ie95Iaq4S/GUEIrejyrntQ/VCMKUYvKLoyKxOBzJ2kjA3b6rC9/KL6KXfDC2GqvLiNqQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-validator-option" "^7.14.5"
- "@babel/plugin-transform-react-display-name" "^7.14.5"
- "@babel/plugin-transform-react-jsx" "^7.14.5"
- "@babel/plugin-transform-react-jsx-development" "^7.14.5"
- "@babel/plugin-transform-react-pure-annotations" "^7.14.5"
-
-"@babel/preset-typescript@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz#86480b483bb97f75036e8864fe404cc782cc311b"
- integrity sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-transform-typescript" "^7.12.1"
-
-"@babel/preset-typescript@^7.12.7":
- version "7.15.0"
- resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz#e8fca638a1a0f64f14e1119f7fe4500277840945"
- integrity sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-validator-option" "^7.14.5"
- "@babel/plugin-transform-typescript" "^7.15.0"
-
-"@babel/register@^7.12.1":
- version "7.15.3"
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.15.3.tgz#6b40a549e06ec06c885b2ec42c3dd711f55fe752"
- integrity sha512-mj4IY1ZJkorClxKTImccn4T81+UKTo4Ux0+OFSV9hME1ooqS9UV+pJ6BjD0qXPK4T3XW/KNa79XByjeEMZz+fw==
- dependencies:
- clone-deep "^4.0.1"
- find-cache-dir "^2.0.0"
- make-dir "^2.1.0"
- pirates "^4.0.0"
- source-map-support "^0.5.16"
-
-"@babel/runtime-corejs3@^7.10.2":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz#403139af262b9a6e8f9ba04a6fdcebf8de692bf1"
- integrity sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==
- dependencies:
- core-js-pure "^3.16.0"
- regenerator-runtime "^0.13.4"
-
-"@babel/runtime@7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.1.tgz#b4116a6b6711d010b2dad3b7b6e43bf1b9954740"
- integrity sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==
- dependencies:
- regenerator-runtime "^0.13.4"
-
-"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.0", "@babel/runtime@^7.14.8", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a"
- integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==
- dependencies:
- regenerator-runtime "^0.13.4"
-
-"@babel/template@^7.10.4", "@babel/template@^7.12.7", "@babel/template@^7.15.4", "@babel/template@^7.3.3":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.15.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f194"
- integrity sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==
- dependencies:
- "@babel/code-frame" "^7.14.5"
- "@babel/parser" "^7.15.4"
- "@babel/types" "^7.15.4"
-
-"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.6", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.11", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.7.0":
- version "7.15.4"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d"
- integrity sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==
- dependencies:
- "@babel/code-frame" "^7.14.5"
- "@babel/generator" "^7.15.4"
- "@babel/helper-function-name" "^7.15.4"
- "@babel/helper-hoist-variables" "^7.15.4"
- "@babel/helper-split-export-declaration" "^7.15.4"
- "@babel/parser" "^7.15.4"
- "@babel/types" "^7.15.4"
- debug "^4.1.0"
- globals "^11.1.0"
-
-"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.11", "@babel/types@^7.12.6", "@babel/types@^7.12.7", "@babel/types@^7.14.9", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
- version "7.15.6"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f"
- integrity sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==
- dependencies:
- "@babel/helper-validator-identifier" "^7.14.9"
- to-fast-properties "^2.0.0"
-
-"@base2/pretty-print-object@1.0.0":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.0.tgz#860ce718b0b73f4009e153541faff2cb6b85d047"
- integrity sha512-4Th98KlMHr5+JkxfcoDT//6vY8vM+iSPrLNpHhRyLx2CFYi8e2RfqPLdpbnpo0Q5lQC5hNB79yes07zb02fvCw==
-
-"@bcoe/v8-coverage@^0.2.3":
- version "0.2.3"
- resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
- integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
-
-"@cnakazawa/watch@^1.0.3":
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a"
- integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
- dependencies:
- exec-sh "^0.3.2"
- minimist "^1.2.0"
-
-"@csstools/convert-colors@^1.4.0":
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
- integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
-
-"@csstools/normalize.css@^10.1.0":
- version "10.1.0"
- resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-10.1.0.tgz#f0950bba18819512d42f7197e56c518aa491cf18"
- integrity sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==
-
-"@discoveryjs/json-ext@^0.5.3":
- version "0.5.3"
- resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz#90420f9f9c6d3987f176a19a7d8e764271a2f55d"
- integrity sha512-Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g==
-
-"@emotion/cache@^10.0.27":
- version "10.0.29"
- resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.29.tgz#87e7e64f412c060102d589fe7c6dc042e6f9d1e0"
- integrity sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==
- dependencies:
- "@emotion/sheet" "0.9.4"
- "@emotion/stylis" "0.8.5"
- "@emotion/utils" "0.11.3"
- "@emotion/weak-memoize" "0.2.5"
-
-"@emotion/core@^10.0.4", "@emotion/core@^10.1.1":
- version "10.1.1"
- resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.1.1.tgz#c956c1365f2f2481960064bcb8c4732e5fb612c3"
- integrity sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==
- dependencies:
- "@babel/runtime" "^7.5.5"
- "@emotion/cache" "^10.0.27"
- "@emotion/css" "^10.0.27"
- "@emotion/serialize" "^0.11.15"
- "@emotion/sheet" "0.9.4"
- "@emotion/utils" "0.11.3"
-
-"@emotion/css@^10.0.27":
- version "10.0.27"
- resolved "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.27.tgz#3a7458198fbbebb53b01b2b87f64e5e21241e14c"
- integrity sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==
- dependencies:
- "@emotion/serialize" "^0.11.15"
- "@emotion/utils" "0.11.3"
- babel-plugin-emotion "^10.0.27"
-
-"@emotion/hash@0.8.0", "@emotion/hash@^0.8.0":
- version "0.8.0"
- resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
- integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
-
-"@emotion/is-prop-valid@0.8.8", "@emotion/is-prop-valid@^0.8.6":
- version "0.8.8"
- resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
- integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==
- dependencies:
- "@emotion/memoize" "0.7.4"
-
-"@emotion/memoize@0.7.4":
- version "0.7.4"
- resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
- integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
-
-"@emotion/serialize@^0.11.15", "@emotion/serialize@^0.11.16":
- version "0.11.16"
- resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.16.tgz#dee05f9e96ad2fb25a5206b6d759b2d1ed3379ad"
- integrity sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==
- dependencies:
- "@emotion/hash" "0.8.0"
- "@emotion/memoize" "0.7.4"
- "@emotion/unitless" "0.7.5"
- "@emotion/utils" "0.11.3"
- csstype "^2.5.7"
-
-"@emotion/sheet@0.9.4":
- version "0.9.4"
- resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.4.tgz#894374bea39ec30f489bbfc3438192b9774d32e5"
- integrity sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==
-
-"@emotion/styled-base@^10.0.27":
- version "10.0.31"
- resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.31.tgz#940957ee0aa15c6974adc7d494ff19765a2f742a"
- integrity sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==
- dependencies:
- "@babel/runtime" "^7.5.5"
- "@emotion/is-prop-valid" "0.8.8"
- "@emotion/serialize" "^0.11.15"
- "@emotion/utils" "0.11.3"
-
-"@emotion/styled@^10.0.27", "@emotion/styled@^10.0.4":
- version "10.0.27"
- resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-10.0.27.tgz#12cb67e91f7ad7431e1875b1d83a94b814133eaf"
- integrity sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==
- dependencies:
- "@emotion/styled-base" "^10.0.27"
- babel-plugin-emotion "^10.0.27"
-
-"@emotion/stylis@0.8.5":
- version "0.8.5"
- resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04"
- integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==
-
-"@emotion/unitless@0.7.5":
- version "0.7.5"
- resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
- integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
-
-"@emotion/utils@0.11.3":
- version "0.11.3"
- resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.3.tgz#a759863867befa7e583400d322652a3f44820924"
- integrity sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==
-
-"@emotion/weak-memoize@0.2.5":
- version "0.2.5"
- resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46"
- integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==
-
-"@eslint/eslintrc@^0.4.3":
- version "0.4.3"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c"
- integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==
- dependencies:
- ajv "^6.12.4"
- debug "^4.1.1"
- espree "^7.3.0"
- globals "^13.9.0"
- ignore "^4.0.6"
- import-fresh "^3.2.1"
- js-yaml "^3.13.1"
- minimatch "^3.0.4"
- strip-json-comments "^3.1.1"
-
-"@gar/promisify@^1.0.1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.2.tgz#30aa825f11d438671d585bd44e7fd564535fc210"
- integrity sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==
-
-"@hapi/address@2.x.x":
- version "2.1.4"
- resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5"
- integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==
-
-"@hapi/bourne@1.x.x":
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a"
- integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==
-
-"@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0":
- version "8.5.1"
- resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06"
- integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==
-
-"@hapi/joi@^15.1.0":
- version "15.1.1"
- resolved "https://registry.yarnpkg.com/@hapi/joi/-/joi-15.1.1.tgz#c675b8a71296f02833f8d6d243b34c57b8ce19d7"
- integrity sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==
- dependencies:
- "@hapi/address" "2.x.x"
- "@hapi/bourne" "1.x.x"
- "@hapi/hoek" "8.x.x"
- "@hapi/topo" "3.x.x"
-
-"@hapi/topo@3.x.x":
- version "3.1.6"
- resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29"
- integrity sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==
- dependencies:
- "@hapi/hoek" "^8.3.0"
-
-"@humanwhocodes/config-array@^0.5.0":
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9"
- integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==
- dependencies:
- "@humanwhocodes/object-schema" "^1.2.0"
- debug "^4.1.1"
- minimatch "^3.0.4"
-
-"@humanwhocodes/object-schema@^1.2.0":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf"
- integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==
-
-"@istanbuljs/load-nyc-config@^1.0.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
- integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
- dependencies:
- camelcase "^5.3.1"
- find-up "^4.1.0"
- get-package-type "^0.1.0"
- js-yaml "^3.13.1"
- resolve-from "^5.0.0"
-
-"@istanbuljs/schema@^0.1.2":
- version "0.1.3"
- resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
- integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
-
-"@jest/console@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.6.2.tgz#4e04bc464014358b03ab4937805ee36a0aeb98f2"
- integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==
- dependencies:
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- chalk "^4.0.0"
- jest-message-util "^26.6.2"
- jest-util "^26.6.2"
- slash "^3.0.0"
-
-"@jest/core@^26.6.0", "@jest/core@^26.6.3":
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.6.3.tgz#7639fcb3833d748a4656ada54bde193051e45fad"
- integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==
- dependencies:
- "@jest/console" "^26.6.2"
- "@jest/reporters" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- ansi-escapes "^4.2.1"
- chalk "^4.0.0"
- exit "^0.1.2"
- graceful-fs "^4.2.4"
- jest-changed-files "^26.6.2"
- jest-config "^26.6.3"
- jest-haste-map "^26.6.2"
- jest-message-util "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-resolve "^26.6.2"
- jest-resolve-dependencies "^26.6.3"
- jest-runner "^26.6.3"
- jest-runtime "^26.6.3"
- jest-snapshot "^26.6.2"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- jest-watcher "^26.6.2"
- micromatch "^4.0.2"
- p-each-series "^2.1.0"
- rimraf "^3.0.0"
- slash "^3.0.0"
- strip-ansi "^6.0.0"
-
-"@jest/environment@^26.6.0", "@jest/environment@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.6.2.tgz#ba364cc72e221e79cc8f0a99555bf5d7577cf92c"
- integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==
- dependencies:
- "@jest/fake-timers" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- jest-mock "^26.6.2"
-
-"@jest/fake-timers@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.6.2.tgz#459c329bcf70cee4af4d7e3f3e67848123535aad"
- integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==
- dependencies:
- "@jest/types" "^26.6.2"
- "@sinonjs/fake-timers" "^6.0.1"
- "@types/node" "*"
- jest-message-util "^26.6.2"
- jest-mock "^26.6.2"
- jest-util "^26.6.2"
-
-"@jest/globals@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.6.2.tgz#5b613b78a1aa2655ae908eba638cc96a20df720a"
- integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==
- dependencies:
- "@jest/environment" "^26.6.2"
- "@jest/types" "^26.6.2"
- expect "^26.6.2"
-
-"@jest/reporters@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.6.2.tgz#1f518b99637a5f18307bd3ecf9275f6882a667f6"
- integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==
- dependencies:
- "@bcoe/v8-coverage" "^0.2.3"
- "@jest/console" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- chalk "^4.0.0"
- collect-v8-coverage "^1.0.0"
- exit "^0.1.2"
- glob "^7.1.2"
- graceful-fs "^4.2.4"
- istanbul-lib-coverage "^3.0.0"
- istanbul-lib-instrument "^4.0.3"
- istanbul-lib-report "^3.0.0"
- istanbul-lib-source-maps "^4.0.0"
- istanbul-reports "^3.0.2"
- jest-haste-map "^26.6.2"
- jest-resolve "^26.6.2"
- jest-util "^26.6.2"
- jest-worker "^26.6.2"
- slash "^3.0.0"
- source-map "^0.6.0"
- string-length "^4.0.1"
- terminal-link "^2.0.0"
- v8-to-istanbul "^7.0.0"
- optionalDependencies:
- node-notifier "^8.0.0"
-
-"@jest/source-map@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.6.2.tgz#29af5e1e2e324cafccc936f218309f54ab69d535"
- integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==
- dependencies:
- callsites "^3.0.0"
- graceful-fs "^4.2.4"
- source-map "^0.6.0"
-
-"@jest/test-result@^26.6.0", "@jest/test-result@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.6.2.tgz#55da58b62df134576cc95476efa5f7949e3f5f18"
- integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==
- dependencies:
- "@jest/console" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/istanbul-lib-coverage" "^2.0.0"
- collect-v8-coverage "^1.0.0"
-
-"@jest/test-sequencer@^26.6.3":
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz#98e8a45100863886d074205e8ffdc5a7eb582b17"
- integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==
- dependencies:
- "@jest/test-result" "^26.6.2"
- graceful-fs "^4.2.4"
- jest-haste-map "^26.6.2"
- jest-runner "^26.6.3"
- jest-runtime "^26.6.3"
-
-"@jest/transform@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.6.2.tgz#5ac57c5fa1ad17b2aae83e73e45813894dcf2e4b"
- integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==
- dependencies:
- "@babel/core" "^7.1.0"
- "@jest/types" "^26.6.2"
- babel-plugin-istanbul "^6.0.0"
- chalk "^4.0.0"
- convert-source-map "^1.4.0"
- fast-json-stable-stringify "^2.0.0"
- graceful-fs "^4.2.4"
- jest-haste-map "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-util "^26.6.2"
- micromatch "^4.0.2"
- pirates "^4.0.1"
- slash "^3.0.0"
- source-map "^0.6.1"
- write-file-atomic "^3.0.0"
-
-"@jest/types@^26.6.0", "@jest/types@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e"
- integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==
- dependencies:
- "@types/istanbul-lib-coverage" "^2.0.0"
- "@types/istanbul-reports" "^3.0.0"
- "@types/node" "*"
- "@types/yargs" "^15.0.0"
- chalk "^4.0.0"
-
-"@jest/types@^27.1.1":
- version "27.1.1"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.1.1.tgz#77a3fc014f906c65752d12123a0134359707c0ad"
- integrity sha512-yqJPDDseb0mXgKqmNqypCsb85C22K1aY5+LUxh7syIM9n/b0AsaltxNy+o6tt29VcfGDpYEve175bm3uOhcehA==
- dependencies:
- "@types/istanbul-lib-coverage" "^2.0.0"
- "@types/istanbul-reports" "^3.0.0"
- "@types/node" "*"
- "@types/yargs" "^16.0.0"
- chalk "^4.0.0"
-
-"@material-ui/core@^4.11.4":
- version "4.12.3"
- resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.12.3.tgz#80d665caf0f1f034e52355c5450c0e38b099d3ca"
- integrity sha512-sdpgI/PL56QVsEJldwEe4FFaFTLUqN+rd7sSZiRCdx2E/C7z5yK0y/khAWVBH24tXwto7I1hCzNWfJGZIYJKnw==
- dependencies:
- "@babel/runtime" "^7.4.4"
- "@material-ui/styles" "^4.11.4"
- "@material-ui/system" "^4.12.1"
- "@material-ui/types" "5.1.0"
- "@material-ui/utils" "^4.11.2"
- "@types/react-transition-group" "^4.2.0"
- clsx "^1.0.4"
- hoist-non-react-statics "^3.3.2"
- popper.js "1.16.1-lts"
- prop-types "^15.7.2"
- react-is "^16.8.0 || ^17.0.0"
- react-transition-group "^4.4.0"
-
-"@material-ui/icons@^4.11.2":
- version "4.11.2"
- resolved "https://registry.yarnpkg.com/@material-ui/icons/-/icons-4.11.2.tgz#b3a7353266519cd743b6461ae9fdfcb1b25eb4c5"
- integrity sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ==
- dependencies:
- "@babel/runtime" "^7.4.4"
-
-"@material-ui/lab@^4.0.0-alpha.60":
- version "4.0.0-alpha.60"
- resolved "https://registry.yarnpkg.com/@material-ui/lab/-/lab-4.0.0-alpha.60.tgz#5ad203aed5a8569b0f1753945a21a05efa2234d2"
- integrity sha512-fadlYsPJF+0fx2lRuyqAuJj7hAS1tLDdIEEdov5jlrpb5pp4b+mRDUqQTUxi4inRZHS1bEXpU8QWUhO6xX88aA==
- dependencies:
- "@babel/runtime" "^7.4.4"
- "@material-ui/utils" "^4.11.2"
- clsx "^1.0.4"
- prop-types "^15.7.2"
- react-is "^16.8.0 || ^17.0.0"
-
-"@material-ui/styles@^4.11.4":
- version "4.11.4"
- resolved "https://registry.yarnpkg.com/@material-ui/styles/-/styles-4.11.4.tgz#eb9dfccfcc2d208243d986457dff025497afa00d"
- integrity sha512-KNTIZcnj/zprG5LW0Sao7zw+yG3O35pviHzejMdcSGCdWbiO8qzRgOYL8JAxAsWBKOKYwVZxXtHWaB5T2Kvxew==
- dependencies:
- "@babel/runtime" "^7.4.4"
- "@emotion/hash" "^0.8.0"
- "@material-ui/types" "5.1.0"
- "@material-ui/utils" "^4.11.2"
- clsx "^1.0.4"
- csstype "^2.5.2"
- hoist-non-react-statics "^3.3.2"
- jss "^10.5.1"
- jss-plugin-camel-case "^10.5.1"
- jss-plugin-default-unit "^10.5.1"
- jss-plugin-global "^10.5.1"
- jss-plugin-nested "^10.5.1"
- jss-plugin-props-sort "^10.5.1"
- jss-plugin-rule-value-function "^10.5.1"
- jss-plugin-vendor-prefixer "^10.5.1"
- prop-types "^15.7.2"
-
-"@material-ui/system@^4.12.1":
- version "4.12.1"
- resolved "https://registry.yarnpkg.com/@material-ui/system/-/system-4.12.1.tgz#2dd96c243f8c0a331b2bb6d46efd7771a399707c"
- integrity sha512-lUdzs4q9kEXZGhbN7BptyiS1rLNHe6kG9o8Y307HCvF4sQxbCgpL2qi+gUk+yI8a2DNk48gISEQxoxpgph0xIw==
- dependencies:
- "@babel/runtime" "^7.4.4"
- "@material-ui/utils" "^4.11.2"
- csstype "^2.5.2"
- prop-types "^15.7.2"
-
-"@material-ui/types@5.1.0":
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/@material-ui/types/-/types-5.1.0.tgz#efa1c7a0b0eaa4c7c87ac0390445f0f88b0d88f2"
- integrity sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==
-
-"@material-ui/utils@^4.11.2":
- version "4.11.2"
- resolved "https://registry.yarnpkg.com/@material-ui/utils/-/utils-4.11.2.tgz#f1aefa7e7dff2ebcb97d31de51aecab1bb57540a"
- integrity sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==
- dependencies:
- "@babel/runtime" "^7.4.4"
- prop-types "^15.7.2"
- react-is "^16.8.0 || ^17.0.0"
-
-"@mdx-js/loader@^1.6.22":
- version "1.6.22"
- resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-1.6.22.tgz#d9e8fe7f8185ff13c9c8639c048b123e30d322c4"
- integrity sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==
- dependencies:
- "@mdx-js/mdx" "1.6.22"
- "@mdx-js/react" "1.6.22"
- loader-utils "2.0.0"
-
-"@mdx-js/mdx@1.6.22", "@mdx-js/mdx@^1.6.22":
- version "1.6.22"
- resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-1.6.22.tgz#8a723157bf90e78f17dc0f27995398e6c731f1ba"
- integrity sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==
- dependencies:
- "@babel/core" "7.12.9"
- "@babel/plugin-syntax-jsx" "7.12.1"
- "@babel/plugin-syntax-object-rest-spread" "7.8.3"
- "@mdx-js/util" "1.6.22"
- babel-plugin-apply-mdx-type-prop "1.6.22"
- babel-plugin-extract-import-names "1.6.22"
- camelcase-css "2.0.1"
- detab "2.0.4"
- hast-util-raw "6.0.1"
- lodash.uniq "4.5.0"
- mdast-util-to-hast "10.0.1"
- remark-footnotes "2.0.0"
- remark-mdx "1.6.22"
- remark-parse "8.0.3"
- remark-squeeze-paragraphs "4.0.0"
- style-to-object "0.3.0"
- unified "9.2.0"
- unist-builder "2.0.3"
- unist-util-visit "2.0.3"
-
-"@mdx-js/react@1.6.22", "@mdx-js/react@^1.6.22":
- version "1.6.22"
- resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573"
- integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==
-
-"@mdx-js/util@1.6.22":
- version "1.6.22"
- resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b"
- integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==
-
-"@mrmlnc/readdir-enhanced@^2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
- integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==
- dependencies:
- call-me-maybe "^1.0.1"
- glob-to-regexp "^0.3.0"
-
-"@nodelib/fs.scandir@2.1.5":
- version "2.1.5"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
- integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
- dependencies:
- "@nodelib/fs.stat" "2.0.5"
- run-parallel "^1.1.9"
-
-"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
- integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
-
-"@nodelib/fs.stat@^1.1.2":
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b"
- integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==
-
-"@nodelib/fs.walk@^1.2.3":
- version "1.2.8"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
- integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
- dependencies:
- "@nodelib/fs.scandir" "2.1.5"
- fastq "^1.6.0"
-
-"@npmcli/fs@^1.0.0":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.0.0.tgz#589612cfad3a6ea0feafcb901d29c63fd52db09f"
- integrity sha512-8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ==
- dependencies:
- "@gar/promisify" "^1.0.1"
- semver "^7.3.5"
-
-"@npmcli/move-file@^1.0.1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674"
- integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==
- dependencies:
- mkdirp "^1.0.4"
- rimraf "^3.0.2"
-
-"@pmmmwh/react-refresh-webpack-plugin@0.4.3", "@pmmmwh/react-refresh-webpack-plugin@^0.4.3":
- version "0.4.3"
- resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz#1eec460596d200c0236bf195b078a5d1df89b766"
- integrity sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==
- dependencies:
- ansi-html "^0.0.7"
- error-stack-parser "^2.0.6"
- html-entities "^1.2.1"
- native-url "^0.2.6"
- schema-utils "^2.6.5"
- source-map "^0.7.3"
-
-"@popperjs/core@^2.5.4", "@popperjs/core@^2.6.0":
- version "2.10.1"
- resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.10.1.tgz#728ecd95ab207aab8a9a4e421f0422db329232be"
- integrity sha512-HnUhk1Sy9IuKrxEMdIRCxpIqPw6BFsbYSEUO9p/hNw5sMld/+3OLMWQP80F8/db9qsv3qUjs7ZR5bS/R+iinXw==
-
-"@reach/router@^1.3.4":
- version "1.3.4"
- resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.4.tgz#d2574b19370a70c80480ed91f3da840136d10f8c"
- integrity sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==
- dependencies:
- create-react-context "0.3.0"
- invariant "^2.2.3"
- prop-types "^15.6.1"
- react-lifecycles-compat "^3.0.4"
-
-"@react-leaflet/core@^1.1.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@react-leaflet/core/-/core-1.1.0.tgz#389b2b373f1da4caeb3c4cf6f33d84561c58d504"
- integrity sha512-zFxMHgfjCi7khRVB7o7H8NoJl36NaezvfcaeEurVXx22lAGHFlTHiSuLOGA4tOiHj+Ep+Lo3uwUGJ3YM9BGkHg==
-
-"@rollup/plugin-node-resolve@^7.1.1":
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz#80de384edfbd7bfc9101164910f86078151a3eca"
- integrity sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==
- dependencies:
- "@rollup/pluginutils" "^3.0.8"
- "@types/resolve" "0.0.8"
- builtin-modules "^3.1.0"
- is-module "^1.0.0"
- resolve "^1.14.2"
-
-"@rollup/plugin-replace@^2.3.1":
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz#a2d539314fbc77c244858faa523012825068510a"
- integrity sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==
- dependencies:
- "@rollup/pluginutils" "^3.1.0"
- magic-string "^0.25.7"
-
-"@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b"
- integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
- dependencies:
- "@types/estree" "0.0.39"
- estree-walker "^1.0.1"
- picomatch "^2.2.2"
-
-"@sinonjs/commons@^1.7.0":
- version "1.8.3"
- resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d"
- integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==
- dependencies:
- type-detect "4.0.8"
-
-"@sinonjs/fake-timers@^6.0.1":
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40"
- integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==
- dependencies:
- "@sinonjs/commons" "^1.7.0"
-
-"@storybook/addon-actions@6.3.8", "@storybook/addon-actions@^6.2.9":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-6.3.8.tgz#85e342c30b3118a7885a5cf0ea83c3bb03a18558"
- integrity sha512-Z6nnxD+pFZ9W/WL8A+53OTTGdRHybdomEgsMaETW4AoNjTOpFu1zY66ah7ENXcQkTT+SuY7yediwxwaGuL1H+g==
- dependencies:
- "@storybook/addons" "6.3.8"
- "@storybook/api" "6.3.8"
- "@storybook/client-api" "6.3.8"
- "@storybook/components" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/theming" "6.3.8"
- core-js "^3.8.2"
- fast-deep-equal "^3.1.3"
- global "^4.4.0"
- lodash "^4.17.20"
- polished "^4.0.5"
- prop-types "^15.7.2"
- react-inspector "^5.1.0"
- regenerator-runtime "^0.13.7"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
- uuid-browser "^3.1.0"
-
-"@storybook/addon-backgrounds@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-6.3.8.tgz#36e009c4af0406e1280a7b6b691fa7666ff8cd50"
- integrity sha512-HxyeNfaJi5E0wfCxQhooT6OKEWRU+ukw80nvkuvlM9vuGoxHE4mVCa7oBFk6Ftjwev6njES1c/u8EpuqbRYeZg==
- dependencies:
- "@storybook/addons" "6.3.8"
- "@storybook/api" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/components" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/theming" "6.3.8"
- core-js "^3.8.2"
- global "^4.4.0"
- memoizerific "^1.11.3"
- regenerator-runtime "^0.13.7"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
-
-"@storybook/addon-controls@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-6.3.8.tgz#6bf1803d11ec3d95bbc6f806e9c40797dfc9a05d"
- integrity sha512-fOG+0gvhX7lbJbt0uqy1C2NCraJalE573/zUmSAwa8PQ3woritdpdn+XpV3H84c5+SpCCptZkBkxlfGLuwI1sw==
- dependencies:
- "@storybook/addons" "6.3.8"
- "@storybook/api" "6.3.8"
- "@storybook/client-api" "6.3.8"
- "@storybook/components" "6.3.8"
- "@storybook/node-logger" "6.3.8"
- "@storybook/theming" "6.3.8"
- core-js "^3.8.2"
- ts-dedent "^2.0.0"
-
-"@storybook/addon-docs@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/addon-docs/-/addon-docs-6.3.8.tgz#14ef3faebecc80e33e29fa6581659311a730ebe8"
- integrity sha512-STm2dkX3Cx5w7GMKImujluqXfQxkXnta7TbOzuf49sd04rWpKWiG6KnDFPa6lPvUT8xus3oZedyX3lN2Q2x8bA==
- dependencies:
- "@babel/core" "^7.12.10"
- "@babel/generator" "^7.12.11"
- "@babel/parser" "^7.12.11"
- "@babel/plugin-transform-react-jsx" "^7.12.12"
- "@babel/preset-env" "^7.12.11"
- "@jest/transform" "^26.6.2"
- "@mdx-js/loader" "^1.6.22"
- "@mdx-js/mdx" "^1.6.22"
- "@mdx-js/react" "^1.6.22"
- "@storybook/addons" "6.3.8"
- "@storybook/api" "6.3.8"
- "@storybook/builder-webpack4" "6.3.8"
- "@storybook/client-api" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/components" "6.3.8"
- "@storybook/core" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/csf" "0.0.1"
- "@storybook/csf-tools" "6.3.8"
- "@storybook/node-logger" "6.3.8"
- "@storybook/postinstall" "6.3.8"
- "@storybook/source-loader" "6.3.8"
- "@storybook/theming" "6.3.8"
- acorn "^7.4.1"
- acorn-jsx "^5.3.1"
- acorn-walk "^7.2.0"
- core-js "^3.8.2"
- doctrine "^3.0.0"
- escodegen "^2.0.0"
- fast-deep-equal "^3.1.3"
- global "^4.4.0"
- html-tags "^3.1.0"
- js-string-escape "^1.0.1"
- loader-utils "^2.0.0"
- lodash "^4.17.20"
- p-limit "^3.1.0"
- prettier "~2.2.1"
- prop-types "^15.7.2"
- react-element-to-jsx-string "^14.3.2"
- regenerator-runtime "^0.13.7"
- remark-external-links "^8.0.0"
- remark-slug "^6.0.0"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
-
-"@storybook/addon-essentials@^6.2.9":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/addon-essentials/-/addon-essentials-6.3.8.tgz#1cf54ded8e30fcc1b4b24500c6313f181cfa55b3"
- integrity sha512-8PuXH289gjR0MuRKVfSz38i4kYKSZB3p5z1a+IBqqZBXM6Hujlu4zQE0r9u5qOo7KHT5C/SKWCkn9ZBU9+lSUA==
- dependencies:
- "@storybook/addon-actions" "6.3.8"
- "@storybook/addon-backgrounds" "6.3.8"
- "@storybook/addon-controls" "6.3.8"
- "@storybook/addon-docs" "6.3.8"
- "@storybook/addon-measure" "^2.0.0"
- "@storybook/addon-toolbars" "6.3.8"
- "@storybook/addon-viewport" "6.3.8"
- "@storybook/addons" "6.3.8"
- "@storybook/api" "6.3.8"
- "@storybook/node-logger" "6.3.8"
- core-js "^3.8.2"
- regenerator-runtime "^0.13.7"
- storybook-addon-outline "^1.4.1"
- ts-dedent "^2.0.0"
-
-"@storybook/addon-links@^6.2.9":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-6.3.8.tgz#0a76bbb20c8f322666e0ce3a9c96e6951db5280b"
- integrity sha512-NDP9M+IXsN6CmgJXvAqtmJ4jfANd5VLrV9miAp0i2FHhZ1weKZxaRi0usYfq4k3kdjrQnMqMp2cf7KnB51ZNAQ==
- dependencies:
- "@storybook/addons" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/csf" "0.0.1"
- "@storybook/router" "6.3.8"
- "@types/qs" "^6.9.5"
- core-js "^3.8.2"
- global "^4.4.0"
- prop-types "^15.7.2"
- qs "^6.10.0"
- regenerator-runtime "^0.13.7"
- ts-dedent "^2.0.0"
-
-"@storybook/addon-measure@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@storybook/addon-measure/-/addon-measure-2.0.0.tgz#c40bbe91bacd3f795963dc1ee6ff86be87deeda9"
- integrity sha512-ZhdT++cX+L9LwjhGYggvYUUVQH/MGn2rwbrAwCMzA/f2QTFvkjxzX8nDgMxIhaLCDC+gHIxfJG2wrWN0jkBr3g==
-
-"@storybook/addon-toolbars@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-6.3.8.tgz#8ac21e57d8a584055e01381010e4b5ece649c7f4"
- integrity sha512-jo9w3/TjYSYapSzTluVJzeeATzxf85KpPA/MjuqHl4MvTA1R7ApckZOsfRDcql6xrGEYUfGjUF6MRIicuxojeg==
- dependencies:
- "@storybook/addons" "6.3.8"
- "@storybook/api" "6.3.8"
- "@storybook/client-api" "6.3.8"
- "@storybook/components" "6.3.8"
- "@storybook/theming" "6.3.8"
- core-js "^3.8.2"
- regenerator-runtime "^0.13.7"
-
-"@storybook/addon-viewport@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/addon-viewport/-/addon-viewport-6.3.8.tgz#bd3c1fd8d40faeb23e91e5f911bf254c378a913f"
- integrity sha512-aHGg1jWqJdncrB7YuAYIk+T2WLlGhcL/mBHYjIYnUWP4jtilW5QLUVr/kOBB0JlLx1v9hrKMsItJQMAP9jN+mw==
- dependencies:
- "@storybook/addons" "6.3.8"
- "@storybook/api" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/components" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/theming" "6.3.8"
- core-js "^3.8.2"
- global "^4.4.0"
- memoizerific "^1.11.3"
- prop-types "^15.7.2"
- regenerator-runtime "^0.13.7"
-
-"@storybook/addons@6.3.8", "@storybook/addons@^6.3.0":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-6.3.8.tgz#c4a839ae9b86fb4a1183466db6eb16201c1a0553"
- integrity sha512-TzYk1f/wvfoGDkLxXIx85ii5ED7IfGP/6eu00/i2Hyn4uGqdNi/ltSOJxnxa+DZv8KjYQRVAEo/Fbh95IEXI1Q==
- dependencies:
- "@storybook/api" "6.3.8"
- "@storybook/channels" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/router" "6.3.8"
- "@storybook/theming" "6.3.8"
- core-js "^3.8.2"
- global "^4.4.0"
- regenerator-runtime "^0.13.7"
-
-"@storybook/api@6.3.8", "@storybook/api@^6.3.0":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/api/-/api-6.3.8.tgz#251bcf6cc3a4e0b908bea7fb0aa9e48d6c48d720"
- integrity sha512-8b61KnWhN+sA+Gq+AHH3M4qM0L8pNS9DtdfPi5GUGWzOg6IZ1EgYVsk9afEwkNESxyZ+GM2O6mGu05J0HfyqNg==
- dependencies:
- "@reach/router" "^1.3.4"
- "@storybook/channels" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/csf" "0.0.1"
- "@storybook/router" "6.3.8"
- "@storybook/semver" "^7.3.2"
- "@storybook/theming" "6.3.8"
- "@types/reach__router" "^1.3.7"
- core-js "^3.8.2"
- fast-deep-equal "^3.1.3"
- global "^4.4.0"
- lodash "^4.17.20"
- memoizerific "^1.11.3"
- qs "^6.10.0"
- regenerator-runtime "^0.13.7"
- store2 "^2.12.0"
- telejson "^5.3.2"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
-
-"@storybook/builder-webpack4@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/builder-webpack4/-/builder-webpack4-6.3.8.tgz#9ffe866fbd50a94b3cf3ecde1fe4d5f29dd337e8"
- integrity sha512-Ze/3JRPKwPogKbJJ5Fm4/BJdMbNiqu7DpFQw9s4gBcecBRK0xlfhYaMrPqMS21kEQ2+gr2HPyGRkdoJUAVHXhQ==
- dependencies:
- "@babel/core" "^7.12.10"
- "@babel/plugin-proposal-class-properties" "^7.12.1"
- "@babel/plugin-proposal-decorators" "^7.12.12"
- "@babel/plugin-proposal-export-default-from" "^7.12.1"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
- "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
- "@babel/plugin-proposal-optional-chaining" "^7.12.7"
- "@babel/plugin-proposal-private-methods" "^7.12.1"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
- "@babel/plugin-transform-arrow-functions" "^7.12.1"
- "@babel/plugin-transform-block-scoping" "^7.12.12"
- "@babel/plugin-transform-classes" "^7.12.1"
- "@babel/plugin-transform-destructuring" "^7.12.1"
- "@babel/plugin-transform-for-of" "^7.12.1"
- "@babel/plugin-transform-parameters" "^7.12.1"
- "@babel/plugin-transform-shorthand-properties" "^7.12.1"
- "@babel/plugin-transform-spread" "^7.12.1"
- "@babel/plugin-transform-template-literals" "^7.12.1"
- "@babel/preset-env" "^7.12.11"
- "@babel/preset-react" "^7.12.10"
- "@babel/preset-typescript" "^7.12.7"
- "@storybook/addons" "6.3.8"
- "@storybook/api" "6.3.8"
- "@storybook/channel-postmessage" "6.3.8"
- "@storybook/channels" "6.3.8"
- "@storybook/client-api" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/components" "6.3.8"
- "@storybook/core-common" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/node-logger" "6.3.8"
- "@storybook/router" "6.3.8"
- "@storybook/semver" "^7.3.2"
- "@storybook/theming" "6.3.8"
- "@storybook/ui" "6.3.8"
- "@types/node" "^14.0.10"
- "@types/webpack" "^4.41.26"
- autoprefixer "^9.8.6"
- babel-loader "^8.2.2"
- babel-plugin-macros "^2.8.0"
- babel-plugin-polyfill-corejs3 "^0.1.0"
- case-sensitive-paths-webpack-plugin "^2.3.0"
- core-js "^3.8.2"
- css-loader "^3.6.0"
- dotenv-webpack "^1.8.0"
- file-loader "^6.2.0"
- find-up "^5.0.0"
- fork-ts-checker-webpack-plugin "^4.1.6"
- fs-extra "^9.0.1"
- glob "^7.1.6"
- glob-promise "^3.4.0"
- global "^4.4.0"
- html-webpack-plugin "^4.0.0"
- pnp-webpack-plugin "1.6.4"
- postcss "^7.0.36"
- postcss-flexbugs-fixes "^4.2.1"
- postcss-loader "^4.2.0"
- raw-loader "^4.0.2"
- react-dev-utils "^11.0.3"
- stable "^0.1.8"
- style-loader "^1.3.0"
- terser-webpack-plugin "^4.2.3"
- ts-dedent "^2.0.0"
- url-loader "^4.1.1"
- util-deprecate "^1.0.2"
- webpack "4"
- webpack-dev-middleware "^3.7.3"
- webpack-filter-warnings-plugin "^1.2.1"
- webpack-hot-middleware "^2.25.0"
- webpack-virtual-modules "^0.2.2"
-
-"@storybook/channel-postmessage@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-6.3.8.tgz#43a91760e3464017b8f753b5b383a15a8e56f884"
- integrity sha512-wI08nip2cQBIs1g+i609dDldQsOuSvnGWecWMiE9FwSvWttAyK61Zdph36UhiNzNjCeNdN5nf5qyVFaxZLGXIA==
- dependencies:
- "@storybook/channels" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/core-events" "6.3.8"
- core-js "^3.8.2"
- global "^4.4.0"
- qs "^6.10.0"
- telejson "^5.3.2"
-
-"@storybook/channels@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-6.3.8.tgz#1ae91e1f3c47b215b39c1c31b2a58b7ffafdff35"
- integrity sha512-+bjIb5rPTglbhLgGywDoKK25x9ClCMV29fd/fiF86rXQlfxq6J+or6ars6p97gS2/J1wgRbh+Yf3WkLNQx7s6A==
- dependencies:
- core-js "^3.8.2"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
-
-"@storybook/client-api@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-6.3.8.tgz#60e608a5c2afbe6d63a4a063e616bedde8466584"
- integrity sha512-71HT0K1lswyMSkRRgB1+TGu7X6kFazmoXT3t5wkU6NWIflEngiiJ3w+PMpOGzd6E3Gp3ZOvfkfrzaby5VlBORw==
- dependencies:
- "@storybook/addons" "6.3.8"
- "@storybook/channel-postmessage" "6.3.8"
- "@storybook/channels" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/csf" "0.0.1"
- "@types/qs" "^6.9.5"
- "@types/webpack-env" "^1.16.0"
- core-js "^3.8.2"
- global "^4.4.0"
- lodash "^4.17.20"
- memoizerific "^1.11.3"
- qs "^6.10.0"
- regenerator-runtime "^0.13.7"
- stable "^0.1.8"
- store2 "^2.12.0"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
-
-"@storybook/client-logger@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-6.3.8.tgz#042b81c45f73066e4f6c32942c72f4aca0ae6646"
- integrity sha512-d/65629nvnlDpeubcElTypHuSvOqxNTNKnuN0oKDM8BsE0EO5rhTfzrx2vhiSW8At8MuD1eFC19BWdCZV18Edg==
- dependencies:
- core-js "^3.8.2"
- global "^4.4.0"
-
-"@storybook/components@6.3.8", "@storybook/components@^6.3.0":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/components/-/components-6.3.8.tgz#cb84b0245d8784d41e7e6be25a0d5774363e5b87"
- integrity sha512-zIvCk7MAL9z17EI58h7WE/TgFTm0njGwFkQrbXOgGkkKYoFt/yrrs8HqylcqBqfTivJNiXJNnmmx0ooJ83PIwA==
- dependencies:
- "@popperjs/core" "^2.6.0"
- "@storybook/client-logger" "6.3.8"
- "@storybook/csf" "0.0.1"
- "@storybook/theming" "6.3.8"
- "@types/color-convert" "^2.0.0"
- "@types/overlayscrollbars" "^1.12.0"
- "@types/react-syntax-highlighter" "11.0.5"
- color-convert "^2.0.1"
- core-js "^3.8.2"
- fast-deep-equal "^3.1.3"
- global "^4.4.0"
- lodash "^4.17.20"
- markdown-to-jsx "^7.1.3"
- memoizerific "^1.11.3"
- overlayscrollbars "^1.13.1"
- polished "^4.0.5"
- prop-types "^15.7.2"
- react-colorful "^5.1.2"
- react-popper-tooltip "^3.1.1"
- react-syntax-highlighter "^13.5.3"
- react-textarea-autosize "^8.3.0"
- regenerator-runtime "^0.13.7"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
-
-"@storybook/core-client@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/core-client/-/core-client-6.3.8.tgz#9223b9f22ab86d205dac605bcef15ba0f0068e15"
- integrity sha512-ZO1XA8ENnZXpDN+sW0ElQ468QhV1tJuoGyXXeiKNnpOuKe/7e10vXH9B0VsBc1VIpC0S17cWuq1/vUkcb9fm5Q==
- dependencies:
- "@storybook/addons" "6.3.8"
- "@storybook/channel-postmessage" "6.3.8"
- "@storybook/client-api" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/csf" "0.0.1"
- "@storybook/ui" "6.3.8"
- airbnb-js-shims "^2.2.1"
- ansi-to-html "^0.6.11"
- core-js "^3.8.2"
- global "^4.4.0"
- lodash "^4.17.20"
- qs "^6.10.0"
- regenerator-runtime "^0.13.7"
- ts-dedent "^2.0.0"
- unfetch "^4.2.0"
- util-deprecate "^1.0.2"
-
-"@storybook/core-common@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/core-common/-/core-common-6.3.8.tgz#a8ef7aba92c987be692d936fe6d5782f801e170f"
- integrity sha512-a1buOaYAbs7m8LMeraN9syG9Hp6wePabJoFrcQxwf4EQZcgfwTUkyYarfpsYsy9vFdDzvvANrOYp/fq6Bnx6LA==
- dependencies:
- "@babel/core" "^7.12.10"
- "@babel/plugin-proposal-class-properties" "^7.12.1"
- "@babel/plugin-proposal-decorators" "^7.12.12"
- "@babel/plugin-proposal-export-default-from" "^7.12.1"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
- "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
- "@babel/plugin-proposal-optional-chaining" "^7.12.7"
- "@babel/plugin-proposal-private-methods" "^7.12.1"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
- "@babel/plugin-transform-arrow-functions" "^7.12.1"
- "@babel/plugin-transform-block-scoping" "^7.12.12"
- "@babel/plugin-transform-classes" "^7.12.1"
- "@babel/plugin-transform-destructuring" "^7.12.1"
- "@babel/plugin-transform-for-of" "^7.12.1"
- "@babel/plugin-transform-parameters" "^7.12.1"
- "@babel/plugin-transform-shorthand-properties" "^7.12.1"
- "@babel/plugin-transform-spread" "^7.12.1"
- "@babel/preset-env" "^7.12.11"
- "@babel/preset-react" "^7.12.10"
- "@babel/preset-typescript" "^7.12.7"
- "@babel/register" "^7.12.1"
- "@storybook/node-logger" "6.3.8"
- "@storybook/semver" "^7.3.2"
- "@types/glob-base" "^0.3.0"
- "@types/micromatch" "^4.0.1"
- "@types/node" "^14.0.10"
- "@types/pretty-hrtime" "^1.0.0"
- babel-loader "^8.2.2"
- babel-plugin-macros "^3.0.1"
- babel-plugin-polyfill-corejs3 "^0.1.0"
- chalk "^4.1.0"
- core-js "^3.8.2"
- express "^4.17.1"
- file-system-cache "^1.0.5"
- find-up "^5.0.0"
- fork-ts-checker-webpack-plugin "^6.0.4"
- glob "^7.1.6"
- glob-base "^0.3.0"
- interpret "^2.2.0"
- json5 "^2.1.3"
- lazy-universal-dotenv "^3.0.1"
- micromatch "^4.0.2"
- pkg-dir "^5.0.0"
- pretty-hrtime "^1.0.3"
- resolve-from "^5.0.0"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
- webpack "4"
-
-"@storybook/core-events@6.3.8", "@storybook/core-events@^6.3.0":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-6.3.8.tgz#4c9a3deb9334b10116befbf2db5534d1319d2f39"
- integrity sha512-M3d2iX842YfopqmOHlXzL/Xy4fICzaRnet99GdfOqWjZhC2CVSemVk1b/vgfQv4MFYOQkSLsAjkbDH/kU8n9Aw==
- dependencies:
- core-js "^3.8.2"
-
-"@storybook/core-server@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/core-server/-/core-server-6.3.8.tgz#0d141e6f315b735a442aebc0f424f911456c769c"
- integrity sha512-9J7cabcGe/h6nH4KnRvnYOwY1EFeNtl1qOVgej1nh70aIhKyRVMRc+d2gsOAmzmePtK6pocJUjm1/t876P9Ekg==
- dependencies:
- "@discoveryjs/json-ext" "^0.5.3"
- "@storybook/builder-webpack4" "6.3.8"
- "@storybook/core-client" "6.3.8"
- "@storybook/core-common" "6.3.8"
- "@storybook/csf-tools" "6.3.8"
- "@storybook/manager-webpack4" "6.3.8"
- "@storybook/node-logger" "6.3.8"
- "@storybook/semver" "^7.3.2"
- "@types/node" "^14.0.10"
- "@types/node-fetch" "^2.5.7"
- "@types/pretty-hrtime" "^1.0.0"
- "@types/webpack" "^4.41.26"
- better-opn "^2.1.1"
- boxen "^4.2.0"
- chalk "^4.1.0"
- cli-table3 "0.6.0"
- commander "^6.2.1"
- compression "^1.7.4"
- core-js "^3.8.2"
- cpy "^8.1.1"
- detect-port "^1.3.0"
- express "^4.17.1"
- file-system-cache "^1.0.5"
- fs-extra "^9.0.1"
- globby "^11.0.2"
- ip "^1.1.5"
- node-fetch "^2.6.1"
- pretty-hrtime "^1.0.3"
- prompts "^2.4.0"
- regenerator-runtime "^0.13.7"
- serve-favicon "^2.5.0"
- ts-dedent "^2.0.0"
- util-deprecate "^1.0.2"
- webpack "4"
-
-"@storybook/core@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/core/-/core-6.3.8.tgz#daf11902a0a19cee62b51b5d73669d705468667c"
- integrity sha512-NTPrqX7goy9DnVEqPFvLccjrQ0eHza64ahP75bXo7H5tyVyEDcaI7ynk1l5zkO4+q6Ze9gkRiWIy7Z324kGAMg==
- dependencies:
- "@storybook/core-client" "6.3.8"
- "@storybook/core-server" "6.3.8"
-
-"@storybook/csf-tools@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/csf-tools/-/csf-tools-6.3.8.tgz#bc51d2559d2cf1bf761d38a9a913a523d36a7551"
- integrity sha512-yY+xN+3TKoUNK0KVAhQNPC3Pf7J0gkmSTOhBwRaPjVKQ3Dy8RE+r/+h9v7rxdmWnl7thdt7tWsjaUdy5DPNLug==
- dependencies:
- "@babel/generator" "^7.12.11"
- "@babel/parser" "^7.12.11"
- "@babel/plugin-transform-react-jsx" "^7.12.12"
- "@babel/preset-env" "^7.12.11"
- "@babel/traverse" "^7.12.11"
- "@babel/types" "^7.12.11"
- "@mdx-js/mdx" "^1.6.22"
- "@storybook/csf" "^0.0.1"
- core-js "^3.8.2"
- fs-extra "^9.0.1"
- js-string-escape "^1.0.1"
- lodash "^4.17.20"
- prettier "~2.2.1"
- regenerator-runtime "^0.13.7"
-
-"@storybook/csf@0.0.1", "@storybook/csf@^0.0.1":
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.0.1.tgz#95901507dc02f0bc6f9ac8ee1983e2fc5bb98ce6"
- integrity sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==
- dependencies:
- lodash "^4.17.15"
-
-"@storybook/manager-webpack4@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/manager-webpack4/-/manager-webpack4-6.3.8.tgz#92deb490242567530b1093e9a57371961ea88285"
- integrity sha512-W4t/NIbkNgxbjW/RsjMV4f3gPwY+Rw69GvoIAVurEEyi6dKJa2tQ1XrGOZMhF3PqWDTybOLTopcp9Ici2MJnMA==
- dependencies:
- "@babel/core" "^7.12.10"
- "@babel/plugin-transform-template-literals" "^7.12.1"
- "@babel/preset-react" "^7.12.10"
- "@storybook/addons" "6.3.8"
- "@storybook/core-client" "6.3.8"
- "@storybook/core-common" "6.3.8"
- "@storybook/node-logger" "6.3.8"
- "@storybook/theming" "6.3.8"
- "@storybook/ui" "6.3.8"
- "@types/node" "^14.0.10"
- "@types/webpack" "^4.41.26"
- babel-loader "^8.2.2"
- case-sensitive-paths-webpack-plugin "^2.3.0"
- chalk "^4.1.0"
- core-js "^3.8.2"
- css-loader "^3.6.0"
- dotenv-webpack "^1.8.0"
- express "^4.17.1"
- file-loader "^6.2.0"
- file-system-cache "^1.0.5"
- find-up "^5.0.0"
- fs-extra "^9.0.1"
- html-webpack-plugin "^4.0.0"
- node-fetch "^2.6.1"
- pnp-webpack-plugin "1.6.4"
- read-pkg-up "^7.0.1"
- regenerator-runtime "^0.13.7"
- resolve-from "^5.0.0"
- style-loader "^1.3.0"
- telejson "^5.3.2"
- terser-webpack-plugin "^4.2.3"
- ts-dedent "^2.0.0"
- url-loader "^4.1.1"
- util-deprecate "^1.0.2"
- webpack "4"
- webpack-dev-middleware "^3.7.3"
- webpack-virtual-modules "^0.2.2"
-
-"@storybook/node-logger@6.3.8", "@storybook/node-logger@^6.2.9":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-6.3.8.tgz#664ffc1ed6f9b8fb446005d4b60fc2fba129fc21"
- integrity sha512-NDXLcvEepnsVGnnhNgRa1SuedPrHJpbi3rubJENCwAy1fD3oB8HIkSCVHaml/htaQXVp6CGMWy02l5iGCVN4ZA==
- dependencies:
- "@types/npmlog" "^4.1.2"
- chalk "^4.1.0"
- core-js "^3.8.2"
- npmlog "^4.1.2"
- pretty-hrtime "^1.0.3"
-
-"@storybook/postinstall@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/postinstall/-/postinstall-6.3.8.tgz#9c3a4ad631a4b952b3fdf686cf60716c62f3e131"
- integrity sha512-qtU68/G1NGcoJuin84ZAk2VhaXkWbJC622ngTVrYWxVWvvryGk4A7Qscx2R9o5R8zmQVV18HZ5d7bs5g0ibsgA==
- dependencies:
- core-js "^3.8.2"
-
-"@storybook/preset-create-react-app@^3.1.7":
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/@storybook/preset-create-react-app/-/preset-create-react-app-3.2.0.tgz#660597906847e38e9d886241d3d8e2ecc770a2eb"
- integrity sha512-lLoWCGr5cV+JNDRKYHC2gD+P2eyBqdN8qhmBa+PxDgPSNKfgUf9Wnoh+C7WTG5q2DEeR9SvUpQpZomX9DDQa4Q==
- dependencies:
- "@pmmmwh/react-refresh-webpack-plugin" "^0.4.3"
- "@types/babel__core" "^7.1.7"
- "@types/webpack" "^4.41.13"
- babel-plugin-react-docgen "^4.1.0"
- pnp-webpack-plugin "^1.6.4"
- react-docgen-typescript-plugin "^1.0.0"
- semver "^7.3.5"
-
-"@storybook/react-docgen-typescript-plugin@1.0.2-canary.253f8c1.0":
- version "1.0.2-canary.253f8c1.0"
- resolved "https://registry.yarnpkg.com/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.2-canary.253f8c1.0.tgz#f2da40e6aae4aa586c2fb284a4a1744602c3c7fa"
- integrity sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==
- dependencies:
- debug "^4.1.1"
- endent "^2.0.1"
- find-cache-dir "^3.3.1"
- flat-cache "^3.0.4"
- micromatch "^4.0.2"
- react-docgen-typescript "^2.0.0"
- tslib "^2.0.0"
-
-"@storybook/react@^6.2.9":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/react/-/react-6.3.8.tgz#1b341fb3dd20f2de4c3b542bcda2623fe0babb2b"
- integrity sha512-X+xFilz6qHEMj6m7nKqoH2uDAIWSbjASj7kGW6rdVj6WvCpLeEQhM4wdrulRXFsbAetWtl/KZnmtjakgXzYGKg==
- dependencies:
- "@babel/preset-flow" "^7.12.1"
- "@babel/preset-react" "^7.12.10"
- "@pmmmwh/react-refresh-webpack-plugin" "^0.4.3"
- "@storybook/addons" "6.3.8"
- "@storybook/core" "6.3.8"
- "@storybook/core-common" "6.3.8"
- "@storybook/node-logger" "6.3.8"
- "@storybook/react-docgen-typescript-plugin" "1.0.2-canary.253f8c1.0"
- "@storybook/semver" "^7.3.2"
- "@types/webpack-env" "^1.16.0"
- babel-plugin-add-react-displayname "^0.0.5"
- babel-plugin-named-asset-import "^0.3.1"
- babel-plugin-react-docgen "^4.2.1"
- core-js "^3.8.2"
- global "^4.4.0"
- lodash "^4.17.20"
- prop-types "^15.7.2"
- react-dev-utils "^11.0.3"
- react-refresh "^0.8.3"
- read-pkg-up "^7.0.1"
- regenerator-runtime "^0.13.7"
- ts-dedent "^2.0.0"
- webpack "4"
-
-"@storybook/router@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/router/-/router-6.3.8.tgz#16f6c73a760918adb146e456c5b98614cb747f79"
- integrity sha512-CafRmHtkwa8CQETum0RaspSExt8mrFsoYZSyrVSWqOyGG048MT3ocCPRsSueor17h+Q5neKamrPVN1jAdSilDg==
- dependencies:
- "@reach/router" "^1.3.4"
- "@storybook/client-logger" "6.3.8"
- "@types/reach__router" "^1.3.7"
- core-js "^3.8.2"
- fast-deep-equal "^3.1.3"
- global "^4.4.0"
- lodash "^4.17.20"
- memoizerific "^1.11.3"
- qs "^6.10.0"
- ts-dedent "^2.0.0"
-
-"@storybook/semver@^7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@storybook/semver/-/semver-7.3.2.tgz#f3b9c44a1c9a0b933c04e66d0048fcf2fa10dac0"
- integrity sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==
- dependencies:
- core-js "^3.6.5"
- find-up "^4.1.0"
-
-"@storybook/source-loader@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/source-loader/-/source-loader-6.3.8.tgz#b11aaa08b3356d0a1749bcac3b5aab52f426dec1"
- integrity sha512-aQ3mrpxpVB2w7sST4jbQUBgHLQZTLD0H1SgohHSuNPz2nrYieuxmOfwjbJr1ZCtuZDCi5xyLjDgUJ3wZ1hPsfQ==
- dependencies:
- "@storybook/addons" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/csf" "0.0.1"
- core-js "^3.8.2"
- estraverse "^5.2.0"
- global "^4.4.0"
- loader-utils "^2.0.0"
- lodash "^4.17.20"
- prettier "~2.2.1"
- regenerator-runtime "^0.13.7"
-
-"@storybook/theming@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-6.3.8.tgz#3af76408aa8a4f13e217cf407e63a03db217eedc"
- integrity sha512-Np51rvecnuHNevZ7Em0uElT5UkgASP5K2u8NpHcCxP/Hd73wxS/h//6XnjA9Aich7h/JanG71jAC3qqhZabatA==
- dependencies:
- "@emotion/core" "^10.1.1"
- "@emotion/is-prop-valid" "^0.8.6"
- "@emotion/styled" "^10.0.27"
- "@storybook/client-logger" "6.3.8"
- core-js "^3.8.2"
- deep-object-diff "^1.1.0"
- emotion-theming "^10.0.27"
- global "^4.4.0"
- memoizerific "^1.11.3"
- polished "^4.0.5"
- resolve-from "^5.0.0"
- ts-dedent "^2.0.0"
-
-"@storybook/ui@6.3.8":
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/@storybook/ui/-/ui-6.3.8.tgz#9fb71befbe76f06c478925610ce998c23260a3f3"
- integrity sha512-R7LlDfRvD/IcARtmGtYAM79ks2HL+nitdfdRpoW8fYZiX3ErfSIScWzzoxRPFqedg64vwOvbIEhXp7N9JDwFZA==
- dependencies:
- "@emotion/core" "^10.1.1"
- "@storybook/addons" "6.3.8"
- "@storybook/api" "6.3.8"
- "@storybook/channels" "6.3.8"
- "@storybook/client-logger" "6.3.8"
- "@storybook/components" "6.3.8"
- "@storybook/core-events" "6.3.8"
- "@storybook/router" "6.3.8"
- "@storybook/semver" "^7.3.2"
- "@storybook/theming" "6.3.8"
- "@types/markdown-to-jsx" "^6.11.3"
- copy-to-clipboard "^3.3.1"
- core-js "^3.8.2"
- core-js-pure "^3.8.2"
- downshift "^6.0.15"
- emotion-theming "^10.0.27"
- fuse.js "^3.6.1"
- global "^4.4.0"
- lodash "^4.17.20"
- markdown-to-jsx "^6.11.4"
- memoizerific "^1.11.3"
- polished "^4.0.5"
- qs "^6.10.0"
- react-draggable "^4.4.3"
- react-helmet-async "^1.0.7"
- react-sizeme "^3.0.1"
- regenerator-runtime "^0.13.7"
- resolve-from "^5.0.0"
- store2 "^2.12.0"
-
-"@surma/rollup-plugin-off-main-thread@^1.1.1":
- version "1.4.2"
- resolved "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz#e6786b6af5799f82f7ab3a82e53f6182d2b91a58"
- integrity sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==
- dependencies:
- ejs "^2.6.1"
- magic-string "^0.25.0"
-
-"@svgr/babel-plugin-add-jsx-attribute@^5.4.0":
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906"
- integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==
-
-"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0":
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef"
- integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==
-
-"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1":
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd"
- integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==
-
-"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1":
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897"
- integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==
-
-"@svgr/babel-plugin-svg-dynamic-title@^5.4.0":
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7"
- integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==
-
-"@svgr/babel-plugin-svg-em-dimensions@^5.4.0":
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0"
- integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==
-
-"@svgr/babel-plugin-transform-react-native-svg@^5.4.0":
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80"
- integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==
-
-"@svgr/babel-plugin-transform-svg-component@^5.5.0":
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz#583a5e2a193e214da2f3afeb0b9e8d3250126b4a"
- integrity sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==
-
-"@svgr/babel-preset@^5.5.0":
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.5.0.tgz#8af54f3e0a8add7b1e2b0fcd5a882c55393df327"
- integrity sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==
- dependencies:
- "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0"
- "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0"
- "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1"
- "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1"
- "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0"
- "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0"
- "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0"
- "@svgr/babel-plugin-transform-svg-component" "^5.5.0"
-
-"@svgr/core@^5.5.0":
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.5.0.tgz#82e826b8715d71083120fe8f2492ec7d7874a579"
- integrity sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==
- dependencies:
- "@svgr/plugin-jsx" "^5.5.0"
- camelcase "^6.2.0"
- cosmiconfig "^7.0.0"
-
-"@svgr/hast-util-to-babel-ast@^5.5.0":
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz#5ee52a9c2533f73e63f8f22b779f93cd432a5461"
- integrity sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==
- dependencies:
- "@babel/types" "^7.12.6"
-
-"@svgr/plugin-jsx@^5.5.0":
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz#1aa8cd798a1db7173ac043466d7b52236b369000"
- integrity sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==
- dependencies:
- "@babel/core" "^7.12.3"
- "@svgr/babel-preset" "^5.5.0"
- "@svgr/hast-util-to-babel-ast" "^5.5.0"
- svg-parser "^2.0.2"
-
-"@svgr/plugin-svgo@^5.5.0":
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz#02da55d85320549324e201c7b2e53bf431fcc246"
- integrity sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==
- dependencies:
- cosmiconfig "^7.0.0"
- deepmerge "^4.2.2"
- svgo "^1.2.2"
-
-"@svgr/webpack@5.5.0":
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-5.5.0.tgz#aae858ee579f5fa8ce6c3166ef56c6a1b381b640"
- integrity sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==
- dependencies:
- "@babel/core" "^7.12.3"
- "@babel/plugin-transform-react-constant-elements" "^7.12.1"
- "@babel/preset-env" "^7.12.1"
- "@babel/preset-react" "^7.12.5"
- "@svgr/core" "^5.5.0"
- "@svgr/plugin-jsx" "^5.5.0"
- "@svgr/plugin-svgo" "^5.5.0"
- loader-utils "^2.0.0"
-
-"@testing-library/dom@^7.28.1":
- version "7.31.2"
- resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.31.2.tgz#df361db38f5212b88555068ab8119f5d841a8c4a"
- integrity sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==
- dependencies:
- "@babel/code-frame" "^7.10.4"
- "@babel/runtime" "^7.12.5"
- "@types/aria-query" "^4.2.0"
- aria-query "^4.2.2"
- chalk "^4.1.0"
- dom-accessibility-api "^0.5.6"
- lz-string "^1.4.4"
- pretty-format "^26.6.2"
-
-"@testing-library/jest-dom@^5.11.4":
- version "5.14.1"
- resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.14.1.tgz#8501e16f1e55a55d675fe73eecee32cdaddb9766"
- integrity sha512-dfB7HVIgTNCxH22M1+KU6viG5of2ldoA5ly8Ar8xkezKHKXjRvznCdbMbqjYGgO2xjRbwnR+rR8MLUIqF3kKbQ==
- dependencies:
- "@babel/runtime" "^7.9.2"
- "@types/testing-library__jest-dom" "^5.9.1"
- aria-query "^4.2.2"
- chalk "^3.0.0"
- css "^3.0.0"
- css.escape "^1.5.1"
- dom-accessibility-api "^0.5.6"
- lodash "^4.17.15"
- redent "^3.0.0"
-
-"@testing-library/react@^11.1.0":
- version "11.2.7"
- resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-11.2.7.tgz#b29e2e95c6765c815786c0bc1d5aed9cb2bf7818"
- integrity sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==
- dependencies:
- "@babel/runtime" "^7.12.5"
- "@testing-library/dom" "^7.28.1"
-
-"@testing-library/user-event@^12.1.10":
- version "12.8.3"
- resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-12.8.3.tgz#1aa3ed4b9f79340a1e1836bc7f57c501e838704a"
- integrity sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==
- dependencies:
- "@babel/runtime" "^7.12.5"
-
-"@tootallnate/once@1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
- integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
-
-"@types/aria-query@^4.2.0":
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.2.tgz#ed4e0ad92306a704f9fb132a0cfcf77486dbe2bc"
- integrity sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==
-
-"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7":
- version "7.1.16"
- resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.16.tgz#bc12c74b7d65e82d29876b5d0baf5c625ac58702"
- integrity sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==
- dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
- "@types/babel__generator" "*"
- "@types/babel__template" "*"
- "@types/babel__traverse" "*"
-
-"@types/babel__generator@*":
- version "7.6.3"
- resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5"
- integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==
- dependencies:
- "@babel/types" "^7.0.0"
-
-"@types/babel__template@*":
- version "7.4.1"
- resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969"
- integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==
- dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
-
-"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
- version "7.14.2"
- resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43"
- integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==
- dependencies:
- "@babel/types" "^7.3.0"
-
-"@types/braces@*":
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/@types/braces/-/braces-3.0.1.tgz#5a284d193cfc61abb2e5a50d36ebbc50d942a32b"
- integrity sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==
-
-"@types/color-convert@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@types/color-convert/-/color-convert-2.0.0.tgz#8f5ee6b9e863dcbee5703f5a517ffb13d3ea4e22"
- integrity sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==
- dependencies:
- "@types/color-name" "*"
-
-"@types/color-name@*":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
- integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
-
-"@types/eslint@^7.2.6":
- version "7.28.0"
- resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.28.0.tgz#7e41f2481d301c68e14f483fe10b017753ce8d5a"
- integrity sha512-07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A==
- dependencies:
- "@types/estree" "*"
- "@types/json-schema" "*"
-
-"@types/estree@*":
- version "0.0.50"
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83"
- integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==
-
-"@types/estree@0.0.39":
- version "0.0.39"
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
- integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
-
-"@types/glob-base@^0.3.0":
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/@types/glob-base/-/glob-base-0.3.0.tgz#a581d688347e10e50dd7c17d6f2880a10354319d"
- integrity sha1-pYHWiDR+EOUN18F9byiAoQNUMZ0=
-
-"@types/glob@*", "@types/glob@^7.1.1":
- version "7.1.4"
- resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.4.tgz#ea59e21d2ee5c517914cb4bc8e4153b99e566672"
- integrity sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==
- dependencies:
- "@types/minimatch" "*"
- "@types/node" "*"
-
-"@types/graceful-fs@^4.1.2":
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
- integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
- dependencies:
- "@types/node" "*"
-
-"@types/hast@^2.0.0":
- version "2.3.4"
- resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc"
- integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==
- dependencies:
- "@types/unist" "*"
-
-"@types/html-minifier-terser@^5.0.0":
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz#693b316ad323ea97eed6b38ed1a3cc02b1672b57"
- integrity sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==
-
-"@types/is-function@^1.0.0":
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/@types/is-function/-/is-function-1.0.1.tgz#2d024eace950c836d9e3335a66b97960ae41d022"
- integrity sha512-A79HEEiwXTFtfY+Bcbo58M2GRYzCr9itHWzbzHVFNEYCcoU/MMGwYYf721gBrnhpj1s6RGVVha/IgNFnR0Iw/Q==
-
-"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762"
- integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==
-
-"@types/istanbul-lib-report@*":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
- integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
- dependencies:
- "@types/istanbul-lib-coverage" "*"
-
-"@types/istanbul-reports@^3.0.0":
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff"
- integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==
- dependencies:
- "@types/istanbul-lib-report" "*"
-
-"@types/jest@*":
- version "27.0.1"
- resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.0.1.tgz#fafcc997da0135865311bb1215ba16dba6bdf4ca"
- integrity sha512-HTLpVXHrY69556ozYkcq47TtQJXpcWAWfkoqz+ZGz2JnmZhzlRjprCIyFnetSy8gpDWwTTGBcRVv1J1I1vBrHw==
- dependencies:
- jest-diff "^27.0.0"
- pretty-format "^27.0.0"
-
-"@types/json-schema@*", "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8":
- version "7.0.9"
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d"
- integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==
-
-"@types/json5@^0.0.29":
- version "0.0.29"
- resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
- integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
-
-"@types/markdown-to-jsx@^6.11.3":
- version "6.11.3"
- resolved "https://registry.yarnpkg.com/@types/markdown-to-jsx/-/markdown-to-jsx-6.11.3.tgz#cdd1619308fecbc8be7e6a26f3751260249b020e"
- integrity sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw==
- dependencies:
- "@types/react" "*"
-
-"@types/mdast@^3.0.0":
- version "3.0.10"
- resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.10.tgz#4724244a82a4598884cbbe9bcfd73dff927ee8af"
- integrity sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==
- dependencies:
- "@types/unist" "*"
-
-"@types/micromatch@^4.0.1":
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/@types/micromatch/-/micromatch-4.0.2.tgz#ce29c8b166a73bf980a5727b1e4a4d099965151d"
- integrity sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==
- dependencies:
- "@types/braces" "*"
-
-"@types/minimatch@*":
- version "3.0.5"
- resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40"
- integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==
-
-"@types/node-fetch@^2.5.7":
- version "2.5.12"
- resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.12.tgz#8a6f779b1d4e60b7a57fb6fd48d84fb545b9cc66"
- integrity sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw==
- dependencies:
- "@types/node" "*"
- form-data "^3.0.0"
-
-"@types/node@*":
- version "16.9.1"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-16.9.1.tgz#0611b37db4246c937feef529ddcc018cf8e35708"
- integrity sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==
-
-"@types/node@^14.0.10":
- version "14.17.15"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.17.15.tgz#d5ebfb62a69074ebb85cbe0529ad917bb8f2bae8"
- integrity sha512-D1sdW0EcSCmNdLKBGMYb38YsHUS6JcM7yQ6sLQ9KuZ35ck7LYCKE7kYFHOO59ayFOY3zobWVZxf4KXhYHcHYFA==
-
-"@types/normalize-package-data@^2.4.0":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301"
- integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==
-
-"@types/npmlog@^4.1.2":
- version "4.1.3"
- resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.3.tgz#9c24b49a97e25cf15a890ff404764080d7942132"
- integrity sha512-1TcL7YDYCtnHmLhTWbum+IIwLlvpaHoEKS2KNIngEwLzwgDeHaebaEHHbQp8IqzNQ9IYiboLKUjAf7MZqG63+w==
-
-"@types/overlayscrollbars@^1.12.0":
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/@types/overlayscrollbars/-/overlayscrollbars-1.12.1.tgz#fb637071b545834fb12aea94ee309a2ff4cdc0a8"
- integrity sha512-V25YHbSoKQN35UasHf0EKD9U2vcmexRSp78qa8UglxFH8H3D+adEa9zGZwrqpH4TdvqeMrgMqVqsLB4woAryrQ==
-
-"@types/parse-json@^4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
- integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
-
-"@types/parse5@^5.0.0":
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-5.0.3.tgz#e7b5aebbac150f8b5fdd4a46e7f0bd8e65e19109"
- integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==
-
-"@types/prettier@^2.0.0":
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.3.2.tgz#fc8c2825e4ed2142473b4a81064e6e081463d1b3"
- integrity sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog==
-
-"@types/pretty-hrtime@^1.0.0":
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz#72a26101dc567b0d68fd956cf42314556e42d601"
- integrity sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==
-
-"@types/prop-types@*":
- version "15.7.4"
- resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11"
- integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==
-
-"@types/q@^1.5.1":
- version "1.5.5"
- resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz#75a2a8e7d8ab4b230414505d92335d1dcb53a6df"
- integrity sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==
-
-"@types/qs@^6.9.5":
- version "6.9.7"
- resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb"
- integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==
-
-"@types/reach__router@^1.3.7":
- version "1.3.9"
- resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.9.tgz#d3aaac0072665c81063cc6c557c18dadd642b226"
- integrity sha512-N6rqQqTTAV/zKLfK3iq9Ww3wqCEhTZvsilhl0zI09zETdVq1QGmJH6+/xnj8AFUWIrle2Cqo+PGM/Ltr1vBb9w==
- dependencies:
- "@types/react" "*"
-
-"@types/react-syntax-highlighter@11.0.5":
- version "11.0.5"
- resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.5.tgz#0d546261b4021e1f9d85b50401c0a42acb106087"
- integrity sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==
- dependencies:
- "@types/react" "*"
-
-"@types/react-transition-group@^4.2.0":
- version "4.4.2"
- resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.2.tgz#38890fd9db68bf1f2252b99a942998dc7877c5b3"
- integrity sha512-KibDWL6nshuOJ0fu8ll7QnV/LVTo3PzQ9aCPnRUYPfX7eZohHwLIdNHj7pftanREzHNP4/nJa8oeM73uSiavMQ==
- dependencies:
- "@types/react" "*"
-
-"@types/react@*":
- version "17.0.20"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.20.tgz#a4284b184d47975c71658cd69e759b6bd37c3b8c"
- integrity sha512-wWZrPlihslrPpcKyCSlmIlruakxr57/buQN1RjlIeaaTWDLtJkTtRW429MoQJergvVKc4IWBpRhWw7YNh/7GVA==
- dependencies:
- "@types/prop-types" "*"
- "@types/scheduler" "*"
- csstype "^3.0.2"
-
-"@types/resolve@0.0.8":
- version "0.0.8"
- resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194"
- integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==
- dependencies:
- "@types/node" "*"
-
-"@types/scheduler@*":
- version "0.16.2"
- resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
- integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
-
-"@types/source-list-map@*":
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9"
- integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==
-
-"@types/stack-utils@^2.0.0":
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
- integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
-
-"@types/tapable@^1", "@types/tapable@^1.0.5":
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.8.tgz#b94a4391c85666c7b73299fd3ad79d4faa435310"
- integrity sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==
-
-"@types/testing-library__jest-dom@^5.9.1":
- version "5.14.1"
- resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.1.tgz#014162a5cee6571819d48e999980694e2f657c3c"
- integrity sha512-Gk9vaXfbzc5zCXI9eYE9BI5BNHEp4D3FWjgqBE/ePGYElLAP+KvxBcsdkwfIVvezs605oiyd/VrpiHe3Oeg+Aw==
- dependencies:
- "@types/jest" "*"
-
-"@types/uglify-js@*":
- version "3.13.1"
- resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.1.tgz#5e889e9e81e94245c75b6450600e1c5ea2878aea"
- integrity sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==
- dependencies:
- source-map "^0.6.1"
-
-"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3":
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
- integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
-
-"@types/webpack-env@^1.16.0":
- version "1.16.2"
- resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.16.2.tgz#8db514b059c1b2ae14ce9d7bb325296de6a9a0fa"
- integrity sha512-vKx7WNQNZDyJveYcHAm9ZxhqSGLYwoyLhrHjLBOkw3a7cT76sTdjgtwyijhk1MaHyRIuSztcVwrUOO/NEu68Dw==
-
-"@types/webpack-sources@*":
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-3.2.0.tgz#16d759ba096c289034b26553d2df1bf45248d38b"
- integrity sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==
- dependencies:
- "@types/node" "*"
- "@types/source-list-map" "*"
- source-map "^0.7.3"
-
-"@types/webpack@^4.41.13", "@types/webpack@^4.41.26", "@types/webpack@^4.41.8":
- version "4.41.30"
- resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.30.tgz#fd3db6d0d41e145a8eeeafcd3c4a7ccde9068ddc"
- integrity sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA==
- dependencies:
- "@types/node" "*"
- "@types/tapable" "^1"
- "@types/uglify-js" "*"
- "@types/webpack-sources" "*"
- anymatch "^3.0.0"
- source-map "^0.6.0"
-
-"@types/yargs-parser@*":
- version "20.2.1"
- resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129"
- integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==
-
-"@types/yargs@^15.0.0":
- version "15.0.14"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz#26d821ddb89e70492160b66d10a0eb6df8f6fb06"
- integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==
- dependencies:
- "@types/yargs-parser" "*"
-
-"@types/yargs@^16.0.0":
- version "16.0.4"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977"
- integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==
- dependencies:
- "@types/yargs-parser" "*"
-
-"@typescript-eslint/eslint-plugin@^4.5.0":
- version "4.31.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.31.0.tgz#9c3fa6f44bad789a962426ad951b54695bd3af6b"
- integrity sha512-iPKZTZNavAlOhfF4gymiSuUkgLne/nh5Oz2/mdiUmuZVD42m9PapnCnzjxuDsnpnbH3wT5s2D8bw6S39TC6GNw==
- dependencies:
- "@typescript-eslint/experimental-utils" "4.31.0"
- "@typescript-eslint/scope-manager" "4.31.0"
- debug "^4.3.1"
- functional-red-black-tree "^1.0.1"
- regexpp "^3.1.0"
- semver "^7.3.5"
- tsutils "^3.21.0"
-
-"@typescript-eslint/experimental-utils@4.31.0", "@typescript-eslint/experimental-utils@^4.0.1":
- version "4.31.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.31.0.tgz#0ef1d5d86c334f983a00f310e43c1ce4c14e054d"
- integrity sha512-Hld+EQiKLMppgKKkdUsLeVIeEOrwKc2G983NmznY/r5/ZtZCDvIOXnXtwqJIgYz/ymsy7n7RGvMyrzf1WaSQrw==
- dependencies:
- "@types/json-schema" "^7.0.7"
- "@typescript-eslint/scope-manager" "4.31.0"
- "@typescript-eslint/types" "4.31.0"
- "@typescript-eslint/typescript-estree" "4.31.0"
- eslint-scope "^5.1.1"
- eslint-utils "^3.0.0"
-
-"@typescript-eslint/experimental-utils@^3.10.1":
- version "3.10.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz#e179ffc81a80ebcae2ea04e0332f8b251345a686"
- integrity sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==
- dependencies:
- "@types/json-schema" "^7.0.3"
- "@typescript-eslint/types" "3.10.1"
- "@typescript-eslint/typescript-estree" "3.10.1"
- eslint-scope "^5.0.0"
- eslint-utils "^2.0.0"
-
-"@typescript-eslint/parser@^4.5.0":
- version "4.31.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.31.0.tgz#87b7cd16b24b9170c77595d8b1363f8047121e05"
- integrity sha512-oWbzvPh5amMuTmKaf1wp0ySxPt2ZXHnFQBN2Szu1O//7LmOvgaKTCIDNLK2NvzpmVd5A2M/1j/rujBqO37hj3w==
- dependencies:
- "@typescript-eslint/scope-manager" "4.31.0"
- "@typescript-eslint/types" "4.31.0"
- "@typescript-eslint/typescript-estree" "4.31.0"
- debug "^4.3.1"
-
-"@typescript-eslint/scope-manager@4.31.0":
- version "4.31.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.31.0.tgz#9be33aed4e9901db753803ba233b70d79a87fc3e"
- integrity sha512-LJ+xtl34W76JMRLjbaQorhR0hfRAlp3Lscdiz9NeI/8i+q0hdBZ7BsiYieLoYWqy+AnRigaD3hUwPFugSzdocg==
- dependencies:
- "@typescript-eslint/types" "4.31.0"
- "@typescript-eslint/visitor-keys" "4.31.0"
-
-"@typescript-eslint/types@3.10.1":
- version "3.10.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.10.1.tgz#1d7463fa7c32d8a23ab508a803ca2fe26e758727"
- integrity sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==
-
-"@typescript-eslint/types@4.31.0":
- version "4.31.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.31.0.tgz#9a7c86fcc1620189567dc4e46cad7efa07ee8dce"
- integrity sha512-9XR5q9mk7DCXgXLS7REIVs+BaAswfdHhx91XqlJklmqWpTALGjygWVIb/UnLh4NWhfwhR5wNe1yTyCInxVhLqQ==
-
-"@typescript-eslint/typescript-estree@3.10.1":
- version "3.10.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz#fd0061cc38add4fad45136d654408569f365b853"
- integrity sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==
- dependencies:
- "@typescript-eslint/types" "3.10.1"
- "@typescript-eslint/visitor-keys" "3.10.1"
- debug "^4.1.1"
- glob "^7.1.6"
- is-glob "^4.0.1"
- lodash "^4.17.15"
- semver "^7.3.2"
- tsutils "^3.17.1"
-
-"@typescript-eslint/typescript-estree@4.31.0":
- version "4.31.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.31.0.tgz#4da4cb6274a7ef3b21d53f9e7147cc76f278a078"
- integrity sha512-QHl2014t3ptg+xpmOSSPn5hm4mY8D4s97ftzyk9BZ8RxYQ3j73XcwuijnJ9cMa6DO4aLXeo8XS3z1omT9LA/Eg==
- dependencies:
- "@typescript-eslint/types" "4.31.0"
- "@typescript-eslint/visitor-keys" "4.31.0"
- debug "^4.3.1"
- globby "^11.0.3"
- is-glob "^4.0.1"
- semver "^7.3.5"
- tsutils "^3.21.0"
-
-"@typescript-eslint/visitor-keys@3.10.1":
- version "3.10.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz#cd4274773e3eb63b2e870ac602274487ecd1e931"
- integrity sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==
- dependencies:
- eslint-visitor-keys "^1.1.0"
-
-"@typescript-eslint/visitor-keys@4.31.0":
- version "4.31.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.31.0.tgz#4e87b7761cb4e0e627dc2047021aa693fc76ea2b"
- integrity sha512-HUcRp2a9I+P21+O21yu3ezv3GEPGjyGiXoEUQwZXjR8UxRApGeLyWH4ZIIUSalE28aG4YsV6GjtaAVB3QKOu0w==
- dependencies:
- "@typescript-eslint/types" "4.31.0"
- eslint-visitor-keys "^2.0.0"
-
-"@usulpro/color-picker@^1.1.3":
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/@usulpro/color-picker/-/color-picker-1.1.4.tgz#2aaaa435dfd4de663d51688f13691bc83a4f50d5"
- integrity sha512-+yTVjNAV+mvbEm0mtVGl7pishZS6gGiCMr9EXfRgvikrqbDdXJlW98I4IOPNdMBGciiz7eYkOyh7qAU3OP7b9A==
- dependencies:
- babel-runtime "^6.5.0"
- prop-types "^15.6.0"
-
-"@webassemblyjs/ast@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
- integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
- dependencies:
- "@webassemblyjs/helper-module-context" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/wast-parser" "1.9.0"
-
-"@webassemblyjs/floating-point-hex-parser@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
- integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
-
-"@webassemblyjs/helper-api-error@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
- integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
-
-"@webassemblyjs/helper-buffer@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
- integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
-
-"@webassemblyjs/helper-code-frame@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
- integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
- dependencies:
- "@webassemblyjs/wast-printer" "1.9.0"
-
-"@webassemblyjs/helper-fsm@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
- integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
-
-"@webassemblyjs/helper-module-context@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
- integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
-
-"@webassemblyjs/helper-wasm-bytecode@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
- integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
-
-"@webassemblyjs/helper-wasm-section@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
- integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-buffer" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/wasm-gen" "1.9.0"
-
-"@webassemblyjs/ieee754@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
- integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
- dependencies:
- "@xtuc/ieee754" "^1.2.0"
-
-"@webassemblyjs/leb128@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
- integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
- dependencies:
- "@xtuc/long" "4.2.2"
-
-"@webassemblyjs/utf8@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
- integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
-
-"@webassemblyjs/wasm-edit@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
- integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-buffer" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/helper-wasm-section" "1.9.0"
- "@webassemblyjs/wasm-gen" "1.9.0"
- "@webassemblyjs/wasm-opt" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
- "@webassemblyjs/wast-printer" "1.9.0"
-
-"@webassemblyjs/wasm-gen@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
- integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/ieee754" "1.9.0"
- "@webassemblyjs/leb128" "1.9.0"
- "@webassemblyjs/utf8" "1.9.0"
-
-"@webassemblyjs/wasm-opt@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
- integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-buffer" "1.9.0"
- "@webassemblyjs/wasm-gen" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
-
-"@webassemblyjs/wasm-parser@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
- integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-api-error" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/ieee754" "1.9.0"
- "@webassemblyjs/leb128" "1.9.0"
- "@webassemblyjs/utf8" "1.9.0"
-
-"@webassemblyjs/wast-parser@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
- integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/floating-point-hex-parser" "1.9.0"
- "@webassemblyjs/helper-api-error" "1.9.0"
- "@webassemblyjs/helper-code-frame" "1.9.0"
- "@webassemblyjs/helper-fsm" "1.9.0"
- "@xtuc/long" "4.2.2"
-
-"@webassemblyjs/wast-printer@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
- integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/wast-parser" "1.9.0"
- "@xtuc/long" "4.2.2"
-
-"@xtuc/ieee754@^1.2.0":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
- integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
-
-"@xtuc/long@4.2.2":
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
- integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
-
-abab@^2.0.3, abab@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
- integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
-
-abbrev@1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
- integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
-
-accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7:
- version "1.3.7"
- resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
- integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
- dependencies:
- mime-types "~2.1.24"
- negotiator "0.6.2"
-
-acorn-globals@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45"
- integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
- dependencies:
- acorn "^7.1.1"
- acorn-walk "^7.1.1"
-
-acorn-jsx@^5.3.1:
- version "5.3.2"
- resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
- integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
-
-acorn-walk@^7.1.1, acorn-walk@^7.2.0:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
- integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
-
-acorn@^6.4.1:
- version "6.4.2"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
- integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
-
-acorn@^7.1.0, acorn@^7.1.1, acorn@^7.4.0, acorn@^7.4.1:
- version "7.4.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
- integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
-
-acorn@^8.2.4:
- version "8.5.0"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2"
- integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==
-
-address@1.1.2, address@^1.0.1:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
- integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==
-
-adjust-sourcemap-loader@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz#5ae12fb5b7b1c585e80bbb5a63ec163a1a45e61e"
- integrity sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==
- dependencies:
- loader-utils "^2.0.0"
- regex-parser "^2.2.11"
-
-agent-base@6:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
- integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
- dependencies:
- debug "4"
-
-aggregate-error@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
- integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
- dependencies:
- clean-stack "^2.0.0"
- indent-string "^4.0.0"
-
-airbnb-js-shims@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz#db481102d682b98ed1daa4c5baa697a05ce5c040"
- integrity sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==
- dependencies:
- array-includes "^3.0.3"
- array.prototype.flat "^1.2.1"
- array.prototype.flatmap "^1.2.1"
- es5-shim "^4.5.13"
- es6-shim "^0.35.5"
- function.prototype.name "^1.1.0"
- globalthis "^1.0.0"
- object.entries "^1.1.0"
- object.fromentries "^2.0.0 || ^1.0.0"
- object.getownpropertydescriptors "^2.0.3"
- object.values "^1.1.0"
- promise.allsettled "^1.0.0"
- promise.prototype.finally "^3.1.0"
- string.prototype.matchall "^4.0.0 || ^3.0.1"
- string.prototype.padend "^3.0.0"
- string.prototype.padstart "^3.0.0"
- symbol.prototype.description "^1.0.0"
-
-ajv-errors@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
- integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
-
-ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
- integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
-
-ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5:
- version "6.12.6"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
- integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
- dependencies:
- fast-deep-equal "^3.1.1"
- fast-json-stable-stringify "^2.0.0"
- json-schema-traverse "^0.4.1"
- uri-js "^4.2.2"
-
-ajv@^8.0.1:
- version "8.6.2"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz#2fb45e0e5fcbc0813326c1c3da535d1881bb0571"
- integrity sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==
- dependencies:
- fast-deep-equal "^3.1.1"
- json-schema-traverse "^1.0.0"
- require-from-string "^2.0.2"
- uri-js "^4.2.2"
-
-alphanum-sort@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
- integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
-
-ansi-align@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb"
- integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==
- dependencies:
- string-width "^3.0.0"
-
-ansi-colors@^3.0.0:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
- integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
-
-ansi-colors@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
- integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
-
-ansi-escapes@^4.2.1, ansi-escapes@^4.3.1:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
- integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
- dependencies:
- type-fest "^0.21.3"
-
-ansi-html@0.0.7, ansi-html@^0.0.7:
- version "0.0.7"
- resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
- integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4=
-
-ansi-regex@^2.0.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
- integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
-
-ansi-regex@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
- integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
-
-ansi-regex@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
- integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
-
-ansi-regex@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
- integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
-
-ansi-styles@^3.2.0, ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
- dependencies:
- color-convert "^1.9.0"
-
-ansi-styles@^4.0.0, ansi-styles@^4.1.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
- integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
- dependencies:
- color-convert "^2.0.1"
-
-ansi-styles@^5.0.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
- integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
-
-ansi-to-html@^0.6.11:
- version "0.6.15"
- resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.15.tgz#ac6ad4798a00f6aa045535d7f6a9cb9294eebea7"
- integrity sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==
- dependencies:
- entities "^2.0.0"
-
-anymatch@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
- integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
- dependencies:
- micromatch "^3.1.4"
- normalize-path "^2.1.1"
-
-anymatch@^3.0.0, anymatch@^3.0.3, anymatch@~3.1.2:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
- integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
- dependencies:
- normalize-path "^3.0.0"
- picomatch "^2.0.4"
-
-app-root-dir@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118"
- integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=
-
-aproba@^1.0.3, aproba@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
- integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
-
-are-we-there-yet@~1.1.2:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146"
- integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==
- dependencies:
- delegates "^1.0.0"
- readable-stream "^2.0.6"
-
-argparse@^1.0.7:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
- integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
- dependencies:
- sprintf-js "~1.0.2"
-
-aria-query@^4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
- integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
- dependencies:
- "@babel/runtime" "^7.10.2"
- "@babel/runtime-corejs3" "^7.10.2"
-
-arity-n@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745"
- integrity sha1-2edrEXM+CFacCEeuezmyhgswt0U=
-
-arr-diff@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
- integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
-
-arr-flatten@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
- integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
-
-arr-union@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
- integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
-
-array-flatten@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
- integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
-
-array-flatten@^2.1.0:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
- integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
-
-array-includes@^3.0.3, array-includes@^3.1.1, array-includes@^3.1.2, array-includes@^3.1.3:
- version "3.1.3"
- resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a"
- integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.2"
- get-intrinsic "^1.1.1"
- is-string "^1.0.5"
-
-array-union@^1.0.1, array-union@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
- integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
- dependencies:
- array-uniq "^1.0.1"
-
-array-union@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
- integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
-
-array-uniq@^1.0.1:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
- integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
-
-array-unique@^0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
- integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
-
-array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123"
- integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==
- dependencies:
- call-bind "^1.0.0"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.1"
-
-array.prototype.flatmap@^1.2.1, array.prototype.flatmap@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9"
- integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==
- dependencies:
- call-bind "^1.0.0"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.1"
- function-bind "^1.1.1"
-
-array.prototype.map@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/array.prototype.map/-/array.prototype.map-1.0.3.tgz#1609623618d3d84134a37d4a220030c2bd18420b"
- integrity sha512-nNcb30v0wfDyIe26Yif3PcV1JXQp4zEeEfupG7L4SRjnD6HLbO5b2a7eVSba53bOx4YCHYMBHt+Fp4vYstneRA==
- dependencies:
- call-bind "^1.0.0"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.1"
- es-array-method-boxes-properly "^1.0.0"
- is-string "^1.0.5"
-
-arrify@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa"
- integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
-
-asap@~2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
- integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
-
-asn1.js@^5.2.0:
- version "5.4.1"
- resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
- integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
- dependencies:
- bn.js "^4.0.0"
- inherits "^2.0.1"
- minimalistic-assert "^1.0.0"
- safer-buffer "^2.1.0"
-
-assert@^1.1.1:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
- integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
- dependencies:
- object-assign "^4.1.1"
- util "0.10.3"
-
-assign-symbols@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
- integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
-
-ast-types-flow@^0.0.7:
- version "0.0.7"
- resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
- integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
-
-ast-types@^0.14.2:
- version "0.14.2"
- resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.14.2.tgz#600b882df8583e3cd4f2df5fa20fa83759d4bdfd"
- integrity sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==
- dependencies:
- tslib "^2.0.1"
-
-astral-regex@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
- integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
-
-async-each@^1.0.1:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
- integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
-
-async-limiter@~1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
- integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
-
-async@^2.6.2:
- version "2.6.3"
- resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
- integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
- dependencies:
- lodash "^4.17.14"
-
-asynckit@^0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
- integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
-
-at-least-node@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
- integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
-
-atob@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
- integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-
-autoprefixer@^9.6.1, autoprefixer@^9.8.6:
- version "9.8.6"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
- integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==
- dependencies:
- browserslist "^4.12.0"
- caniuse-lite "^1.0.30001109"
- colorette "^1.2.1"
- normalize-range "^0.1.2"
- num2fraction "^1.2.2"
- postcss "^7.0.32"
- postcss-value-parser "^4.1.0"
-
-axe-core@^4.0.2:
- version "4.3.3"
- resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.3.3.tgz#b55cd8e8ddf659fe89b064680e1c6a4dceab0325"
- integrity sha512-/lqqLAmuIPi79WYfRpy2i8z+x+vxU3zX2uAm0gs1q52qTuKwolOj1P8XbufpXcsydrpKx2yGn2wzAnxCMV86QA==
-
-axobject-query@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
- integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
-
-babel-eslint@^10.1.0:
- version "10.1.0"
- resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232"
- integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- "@babel/parser" "^7.7.0"
- "@babel/traverse" "^7.7.0"
- "@babel/types" "^7.7.0"
- eslint-visitor-keys "^1.0.0"
- resolve "^1.12.0"
-
-babel-extract-comments@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz#0a2aedf81417ed391b85e18b4614e693a0351a21"
- integrity sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==
- dependencies:
- babylon "^6.18.0"
-
-babel-jest@^26.6.0, babel-jest@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056"
- integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==
- dependencies:
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/babel__core" "^7.1.7"
- babel-plugin-istanbul "^6.0.0"
- babel-preset-jest "^26.6.2"
- chalk "^4.0.0"
- graceful-fs "^4.2.4"
- slash "^3.0.0"
-
-babel-loader@8.1.0, babel-loader@^8.2.2:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
- integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==
- dependencies:
- find-cache-dir "^2.1.0"
- loader-utils "^1.4.0"
- mkdirp "^0.5.3"
- pify "^4.0.1"
- schema-utils "^2.6.5"
-
-babel-plugin-add-react-displayname@^0.0.5:
- version "0.0.5"
- resolved "https://registry.yarnpkg.com/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz#339d4cddb7b65fd62d1df9db9fe04de134122bd5"
- integrity sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=
-
-babel-plugin-apply-mdx-type-prop@1.6.22:
- version "1.6.22"
- resolved "https://registry.yarnpkg.com/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz#d216e8fd0de91de3f1478ef3231e05446bc8705b"
- integrity sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==
- dependencies:
- "@babel/helper-plugin-utils" "7.10.4"
- "@mdx-js/util" "1.6.22"
-
-babel-plugin-dynamic-import-node@^2.3.3:
- version "2.3.3"
- resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
- integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
- dependencies:
- object.assign "^4.1.0"
-
-babel-plugin-emotion@^10.0.27:
- version "10.2.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz#a1fe3503cff80abfd0bdda14abd2e8e57a79d17d"
- integrity sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==
- dependencies:
- "@babel/helper-module-imports" "^7.0.0"
- "@emotion/hash" "0.8.0"
- "@emotion/memoize" "0.7.4"
- "@emotion/serialize" "^0.11.16"
- babel-plugin-macros "^2.0.0"
- babel-plugin-syntax-jsx "^6.18.0"
- convert-source-map "^1.5.0"
- escape-string-regexp "^1.0.5"
- find-root "^1.1.0"
- source-map "^0.5.7"
-
-babel-plugin-extract-import-names@1.6.22:
- version "1.6.22"
- resolved "https://registry.yarnpkg.com/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz#de5f9a28eb12f3eb2578bf74472204e66d1a13dc"
- integrity sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==
- dependencies:
- "@babel/helper-plugin-utils" "7.10.4"
-
-babel-plugin-istanbul@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
- integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@istanbuljs/load-nyc-config" "^1.0.0"
- "@istanbuljs/schema" "^0.1.2"
- istanbul-lib-instrument "^4.0.0"
- test-exclude "^6.0.0"
-
-babel-plugin-jest-hoist@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz#8185bd030348d254c6d7dd974355e6a28b21e62d"
- integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==
- dependencies:
- "@babel/template" "^7.3.3"
- "@babel/types" "^7.3.3"
- "@types/babel__core" "^7.0.0"
- "@types/babel__traverse" "^7.0.6"
-
-babel-plugin-macros@2.8.0, babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.8.0:
- version "2.8.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
- integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
- dependencies:
- "@babel/runtime" "^7.7.2"
- cosmiconfig "^6.0.0"
- resolve "^1.12.0"
-
-babel-plugin-macros@^3.0.1:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
- integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
- dependencies:
- "@babel/runtime" "^7.12.5"
- cosmiconfig "^7.0.0"
- resolve "^1.19.0"
-
-babel-plugin-named-asset-import@^0.3.1, babel-plugin-named-asset-import@^0.3.7:
- version "0.3.7"
- resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz#156cd55d3f1228a5765774340937afc8398067dd"
- integrity sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==
-
-babel-plugin-polyfill-corejs2@^0.2.2:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327"
- integrity sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==
- dependencies:
- "@babel/compat-data" "^7.13.11"
- "@babel/helper-define-polyfill-provider" "^0.2.2"
- semver "^6.1.1"
-
-babel-plugin-polyfill-corejs3@^0.1.0:
- version "0.1.7"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz#80449d9d6f2274912e05d9e182b54816904befd0"
- integrity sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==
- dependencies:
- "@babel/helper-define-polyfill-provider" "^0.1.5"
- core-js-compat "^3.8.1"
-
-babel-plugin-polyfill-corejs3@^0.2.2:
- version "0.2.4"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz#68cb81316b0e8d9d721a92e0009ec6ecd4cd2ca9"
- integrity sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==
- dependencies:
- "@babel/helper-define-polyfill-provider" "^0.2.2"
- core-js-compat "^3.14.0"
-
-babel-plugin-polyfill-regenerator@^0.2.2:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077"
- integrity sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==
- dependencies:
- "@babel/helper-define-polyfill-provider" "^0.2.2"
-
-babel-plugin-react-docgen@^4.1.0, babel-plugin-react-docgen@^4.2.1:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz#7cc8e2f94e8dc057a06e953162f0810e4e72257b"
- integrity sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==
- dependencies:
- ast-types "^0.14.2"
- lodash "^4.17.15"
- react-docgen "^5.0.0"
-
-babel-plugin-syntax-jsx@^6.18.0:
- version "6.18.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
- integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
-
-babel-plugin-syntax-object-rest-spread@^6.8.0:
- version "6.13.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
- integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=
-
-babel-plugin-transform-object-rest-spread@^6.26.0:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
- integrity sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=
- dependencies:
- babel-plugin-syntax-object-rest-spread "^6.8.0"
- babel-runtime "^6.26.0"
-
-babel-plugin-transform-react-remove-prop-types@0.4.24:
- version "0.4.24"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a"
- integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==
-
-babel-preset-current-node-syntax@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b"
- integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==
- dependencies:
- "@babel/plugin-syntax-async-generators" "^7.8.4"
- "@babel/plugin-syntax-bigint" "^7.8.3"
- "@babel/plugin-syntax-class-properties" "^7.8.3"
- "@babel/plugin-syntax-import-meta" "^7.8.3"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-syntax-numeric-separator" "^7.8.3"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
- "@babel/plugin-syntax-top-level-await" "^7.8.3"
-
-babel-preset-jest@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz#747872b1171df032252426586881d62d31798fee"
- integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==
- dependencies:
- babel-plugin-jest-hoist "^26.6.2"
- babel-preset-current-node-syntax "^1.0.0"
-
-babel-preset-react-app@^10.0.0:
- version "10.0.0"
- resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-10.0.0.tgz#689b60edc705f8a70ce87f47ab0e560a317d7045"
- integrity sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==
- dependencies:
- "@babel/core" "7.12.3"
- "@babel/plugin-proposal-class-properties" "7.12.1"
- "@babel/plugin-proposal-decorators" "7.12.1"
- "@babel/plugin-proposal-nullish-coalescing-operator" "7.12.1"
- "@babel/plugin-proposal-numeric-separator" "7.12.1"
- "@babel/plugin-proposal-optional-chaining" "7.12.1"
- "@babel/plugin-transform-flow-strip-types" "7.12.1"
- "@babel/plugin-transform-react-display-name" "7.12.1"
- "@babel/plugin-transform-runtime" "7.12.1"
- "@babel/preset-env" "7.12.1"
- "@babel/preset-react" "7.12.1"
- "@babel/preset-typescript" "7.12.1"
- "@babel/runtime" "7.12.1"
- babel-plugin-macros "2.8.0"
- babel-plugin-transform-react-remove-prop-types "0.4.24"
-
-babel-runtime@^6.26.0, babel-runtime@^6.5.0:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
- integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
- dependencies:
- core-js "^2.4.0"
- regenerator-runtime "^0.11.0"
-
-babylon@^6.18.0:
- version "6.18.0"
- resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
- integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
-
-bail@^1.0.0:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
- integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==
-
-balanced-match@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
- integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
-
-base64-js@^1.0.2:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
- integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
-
-base@^0.11.1:
- version "0.11.2"
- resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
- integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
- dependencies:
- cache-base "^1.0.1"
- class-utils "^0.3.5"
- component-emitter "^1.2.1"
- define-property "^1.0.0"
- isobject "^3.0.1"
- mixin-deep "^1.2.0"
- pascalcase "^0.1.1"
-
-batch-processor@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/batch-processor/-/batch-processor-1.0.0.tgz#75c95c32b748e0850d10c2b168f6bdbe9891ace8"
- integrity sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=
-
-batch@0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
- integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=
-
-better-opn@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-2.1.1.tgz#94a55b4695dc79288f31d7d0e5f658320759f7c6"
- integrity sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==
- dependencies:
- open "^7.0.3"
-
-bfj@^7.0.2:
- version "7.0.2"
- resolved "https://registry.yarnpkg.com/bfj/-/bfj-7.0.2.tgz#1988ce76f3add9ac2913fd8ba47aad9e651bfbb2"
- integrity sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==
- dependencies:
- bluebird "^3.5.5"
- check-types "^11.1.1"
- hoopy "^0.1.4"
- tryer "^1.0.1"
-
-big.js@^5.2.2:
- version "5.2.2"
- resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
- integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
-
-binary-extensions@^1.0.0:
- version "1.13.1"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
- integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
-
-binary-extensions@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
- integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
-
-bindings@^1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
- integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
- dependencies:
- file-uri-to-path "1.0.0"
-
-bluebird@^3.3.5, bluebird@^3.5.5:
- version "3.7.2"
- resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
- integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
-
-bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
- version "4.12.0"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
- integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
-
-bn.js@^5.0.0, bn.js@^5.1.1:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002"
- integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==
-
-body-parser@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
- integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
- dependencies:
- bytes "3.1.0"
- content-type "~1.0.4"
- debug "2.6.9"
- depd "~1.1.2"
- http-errors "1.7.2"
- iconv-lite "0.4.24"
- on-finished "~2.3.0"
- qs "6.7.0"
- raw-body "2.4.0"
- type-is "~1.6.17"
-
-bonjour@^3.5.0:
- version "3.5.0"
- resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
- integrity sha1-jokKGD2O6aI5OzhExpGkK897yfU=
- dependencies:
- array-flatten "^2.1.0"
- deep-equal "^1.0.1"
- dns-equal "^1.0.0"
- dns-txt "^2.0.2"
- multicast-dns "^6.0.1"
- multicast-dns-service-types "^1.1.0"
-
-boolbase@^1.0.0, boolbase@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
- integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
-
-boxen@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64"
- integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==
- dependencies:
- ansi-align "^3.0.0"
- camelcase "^5.3.1"
- chalk "^3.0.0"
- cli-boxes "^2.2.0"
- string-width "^4.1.0"
- term-size "^2.1.0"
- type-fest "^0.8.1"
- widest-line "^3.1.0"
-
-brace-expansion@^1.1.7:
- version "1.1.11"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
- integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
- dependencies:
- balanced-match "^1.0.0"
- concat-map "0.0.1"
-
-braces@^2.3.1, braces@^2.3.2:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
- integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
- dependencies:
- arr-flatten "^1.1.0"
- array-unique "^0.3.2"
- extend-shallow "^2.0.1"
- fill-range "^4.0.0"
- isobject "^3.0.1"
- repeat-element "^1.1.2"
- snapdragon "^0.8.1"
- snapdragon-node "^2.0.1"
- split-string "^3.0.2"
- to-regex "^3.0.1"
-
-braces@^3.0.1, braces@~3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
- integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
- dependencies:
- fill-range "^7.0.1"
-
-brorand@^1.0.1, brorand@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
- integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
-
-browser-process-hrtime@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
- integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-
-browserify-aes@^1.0.0, browserify-aes@^1.0.4:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
- integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
- dependencies:
- buffer-xor "^1.0.3"
- cipher-base "^1.0.0"
- create-hash "^1.1.0"
- evp_bytestokey "^1.0.3"
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-browserify-cipher@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
- integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
- dependencies:
- browserify-aes "^1.0.4"
- browserify-des "^1.0.0"
- evp_bytestokey "^1.0.0"
-
-browserify-des@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
- integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
- dependencies:
- cipher-base "^1.0.1"
- des.js "^1.0.0"
- inherits "^2.0.1"
- safe-buffer "^5.1.2"
-
-browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"
- integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
- dependencies:
- bn.js "^5.0.0"
- randombytes "^2.0.1"
-
-browserify-sign@^4.0.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
- integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
- dependencies:
- bn.js "^5.1.1"
- browserify-rsa "^4.0.1"
- create-hash "^1.2.0"
- create-hmac "^1.1.7"
- elliptic "^6.5.3"
- inherits "^2.0.4"
- parse-asn1 "^5.1.5"
- readable-stream "^3.6.0"
- safe-buffer "^5.2.0"
-
-browserify-zlib@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
- integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
- dependencies:
- pako "~1.0.5"
-
-browserslist@4.14.2:
- version "4.14.2"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.2.tgz#1b3cec458a1ba87588cc5e9be62f19b6d48813ce"
- integrity sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==
- dependencies:
- caniuse-lite "^1.0.30001125"
- electron-to-chromium "^1.3.564"
- escalade "^3.0.2"
- node-releases "^1.1.61"
-
-browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.16.6, browserslist@^4.17.0, browserslist@^4.6.2, browserslist@^4.6.4:
- version "4.17.0"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.17.0.tgz#1fcd81ec75b41d6d4994fb0831b92ac18c01649c"
- integrity sha512-g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g==
- dependencies:
- caniuse-lite "^1.0.30001254"
- colorette "^1.3.0"
- electron-to-chromium "^1.3.830"
- escalade "^3.1.1"
- node-releases "^1.1.75"
-
-bser@2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
- integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
- dependencies:
- node-int64 "^0.4.0"
-
-buffer-from@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
- integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
-
-buffer-indexof@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c"
- integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==
-
-buffer-xor@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
- integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
-
-buffer@^4.3.0:
- version "4.9.2"
- resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
- integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
- dependencies:
- base64-js "^1.0.2"
- ieee754 "^1.1.4"
- isarray "^1.0.0"
-
-builtin-modules@^3.1.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887"
- integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==
-
-builtin-status-codes@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
- integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
-
-bytes@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
- integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
-
-bytes@3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
- integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
-
-c8@^7.6.0:
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/c8/-/c8-7.9.0.tgz#e63b9a22c8b4adbf6a8c8cb6194ee086b3e13c24"
- integrity sha512-aQ7dC8gASnKdBwHUuYuzsdKCEDrKnWr7ZuZUnf4CNAL81oyKloKrs7H7zYvcrmCtIrMToudBSUhq2q+LLBMvgg==
- dependencies:
- "@bcoe/v8-coverage" "^0.2.3"
- "@istanbuljs/schema" "^0.1.2"
- find-up "^5.0.0"
- foreground-child "^2.0.0"
- istanbul-lib-coverage "^3.0.0"
- istanbul-lib-report "^3.0.0"
- istanbul-reports "^3.0.2"
- rimraf "^3.0.0"
- test-exclude "^6.0.0"
- v8-to-istanbul "^8.0.0"
- yargs "^16.2.0"
- yargs-parser "^20.2.7"
-
-cacache@^12.0.2:
- version "12.0.4"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
- integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
- dependencies:
- bluebird "^3.5.5"
- chownr "^1.1.1"
- figgy-pudding "^3.5.1"
- glob "^7.1.4"
- graceful-fs "^4.1.15"
- infer-owner "^1.0.3"
- lru-cache "^5.1.1"
- mississippi "^3.0.0"
- mkdirp "^0.5.1"
- move-concurrently "^1.0.1"
- promise-inflight "^1.0.1"
- rimraf "^2.6.3"
- ssri "^6.0.1"
- unique-filename "^1.1.1"
- y18n "^4.0.0"
-
-cacache@^15.0.5:
- version "15.3.0"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"
- integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==
- dependencies:
- "@npmcli/fs" "^1.0.0"
- "@npmcli/move-file" "^1.0.1"
- chownr "^2.0.0"
- fs-minipass "^2.0.0"
- glob "^7.1.4"
- infer-owner "^1.0.4"
- lru-cache "^6.0.0"
- minipass "^3.1.1"
- minipass-collect "^1.0.2"
- minipass-flush "^1.0.5"
- minipass-pipeline "^1.2.2"
- mkdirp "^1.0.3"
- p-map "^4.0.0"
- promise-inflight "^1.0.1"
- rimraf "^3.0.2"
- ssri "^8.0.1"
- tar "^6.0.2"
- unique-filename "^1.1.1"
-
-cache-base@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
- integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
- dependencies:
- collection-visit "^1.0.0"
- component-emitter "^1.2.1"
- get-value "^2.0.6"
- has-value "^1.0.0"
- isobject "^3.0.1"
- set-value "^2.0.0"
- to-object-path "^0.3.0"
- union-value "^1.0.0"
- unset-value "^1.0.0"
-
-call-bind@^1.0.0, call-bind@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
- integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
- dependencies:
- function-bind "^1.1.1"
- get-intrinsic "^1.0.2"
-
-call-me-maybe@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
- integrity sha1-JtII6onje1y95gJQoV8DHBak1ms=
-
-caller-callsite@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
- integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
- dependencies:
- callsites "^2.0.0"
-
-caller-path@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
- integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
- dependencies:
- caller-callsite "^2.0.0"
-
-callsites@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
- integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
-
-callsites@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
- integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
-
-camel-case@^4.1.1:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
- integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
- dependencies:
- pascal-case "^3.1.2"
- tslib "^2.0.3"
-
-camelcase-css@2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
- integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
-
-camelcase@5.3.1, camelcase@^5.0.0, camelcase@^5.3.1:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
- integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
-
-camelcase@^6.0.0, camelcase@^6.1.0, camelcase@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
- integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
-
-caniuse-api@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
- integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
- dependencies:
- browserslist "^4.0.0"
- caniuse-lite "^1.0.0"
- lodash.memoize "^4.1.2"
- lodash.uniq "^4.5.0"
-
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001254:
- version "1.0.30001255"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001255.tgz#f3b09b59ab52e39e751a569523618f47c4298ca0"
- integrity sha512-F+A3N9jTZL882f/fg/WWVnKSu6IOo3ueLz4zwaOPbPYHNmM/ZaDUyzyJwS1mZhX7Ex5jqTyW599Gdelh5PDYLQ==
-
-capture-exit@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
- integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
- dependencies:
- rsvp "^4.8.4"
-
-case-sensitive-paths-webpack-plugin@2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7"
- integrity sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==
-
-case-sensitive-paths-webpack-plugin@^2.3.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4"
- integrity sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==
-
-ccount@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043"
- integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==
-
-chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
-
-chalk@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
- integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
- dependencies:
- ansi-styles "^4.1.0"
- supports-color "^7.1.0"
-
-chalk@^4.0.0, chalk@^4.1.0:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
- integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
- dependencies:
- ansi-styles "^4.1.0"
- supports-color "^7.1.0"
-
-char-regex@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
- integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
-
-character-entities-legacy@^1.0.0:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1"
- integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==
-
-character-entities@^1.0.0:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b"
- integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==
-
-character-reference-invalid@^1.0.0:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560"
- integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==
-
-check-types@^11.1.1:
- version "11.1.2"
- resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.1.2.tgz#86a7c12bf5539f6324eb0e70ca8896c0e38f3e2f"
- integrity sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==
-
-chokidar@^2.1.8:
- version "2.1.8"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
- integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
- dependencies:
- anymatch "^2.0.0"
- async-each "^1.0.1"
- braces "^2.3.2"
- glob-parent "^3.1.0"
- inherits "^2.0.3"
- is-binary-path "^1.0.0"
- is-glob "^4.0.0"
- normalize-path "^3.0.0"
- path-is-absolute "^1.0.0"
- readdirp "^2.2.1"
- upath "^1.1.1"
- optionalDependencies:
- fsevents "^1.2.7"
-
-chokidar@^3.4.1, chokidar@^3.4.2:
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75"
- integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==
- dependencies:
- anymatch "~3.1.2"
- braces "~3.0.2"
- glob-parent "~5.1.2"
- is-binary-path "~2.1.0"
- is-glob "~4.0.1"
- normalize-path "~3.0.0"
- readdirp "~3.6.0"
- optionalDependencies:
- fsevents "~2.3.2"
-
-chownr@^1.1.1:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
- integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
-
-chownr@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
- integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
-
-chrome-trace-event@^1.0.2:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac"
- integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
-
-ci-info@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
- integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
-
-cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
- integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
- dependencies:
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-cjs-module-lexer@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz#4186fcca0eae175970aee870b9fe2d6cf8d5655f"
- integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==
-
-class-utils@^0.3.5:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
- integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
- dependencies:
- arr-union "^3.1.0"
- define-property "^0.2.5"
- isobject "^3.0.0"
- static-extend "^0.1.1"
-
-clean-css@^4.2.3:
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78"
- integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==
- dependencies:
- source-map "~0.6.0"
-
-clean-stack@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
- integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
-
-cli-boxes@^2.2.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
- integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==
-
-cli-table3@0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee"
- integrity sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==
- dependencies:
- object-assign "^4.1.0"
- string-width "^4.2.0"
- optionalDependencies:
- colors "^1.1.2"
-
-cliui@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
- integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
- dependencies:
- string-width "^3.1.0"
- strip-ansi "^5.2.0"
- wrap-ansi "^5.1.0"
-
-cliui@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
- integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
- dependencies:
- string-width "^4.2.0"
- strip-ansi "^6.0.0"
- wrap-ansi "^6.2.0"
-
-cliui@^7.0.2:
- version "7.0.4"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
- integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
- dependencies:
- string-width "^4.2.0"
- strip-ansi "^6.0.0"
- wrap-ansi "^7.0.0"
-
-clone-deep@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
- integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
- dependencies:
- is-plain-object "^2.0.4"
- kind-of "^6.0.2"
- shallow-clone "^3.0.0"
-
-clsx@^1.0.4, clsx@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188"
- integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==
-
-co@^4.6.0:
- version "4.6.0"
- resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
- integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
-
-coa@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
- integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
- dependencies:
- "@types/q" "^1.5.1"
- chalk "^2.4.1"
- q "^1.1.2"
-
-code-point-at@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
- integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
-
-collapse-white-space@^1.0.2:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287"
- integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==
-
-collect-v8-coverage@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
- integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
-
-collection-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
- integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
- dependencies:
- map-visit "^1.0.0"
- object-visit "^1.0.0"
-
-color-convert@^1.9.0, color-convert@^1.9.3:
- version "1.9.3"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
- dependencies:
- color-name "1.1.3"
-
-color-convert@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
- integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
- dependencies:
- color-name "~1.1.4"
-
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
-
-color-name@^1.0.0, color-name@~1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
- integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-
-color-string@^1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.6.0.tgz#c3915f61fe267672cb7e1e064c9d692219f6c312"
- integrity sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==
- dependencies:
- color-name "^1.0.0"
- simple-swizzle "^0.2.2"
-
-color@^3.0.0:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164"
- integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==
- dependencies:
- color-convert "^1.9.3"
- color-string "^1.6.0"
-
-colorette@^1.2.1, colorette@^1.2.2, colorette@^1.3.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40"
- integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==
-
-colors@^1.1.2:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
- integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
-
-combined-stream@^1.0.8:
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
- integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
- dependencies:
- delayed-stream "~1.0.0"
-
-comma-separated-tokens@^1.0.0:
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea"
- integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==
-
-commander@^2.19.0, commander@^2.20.0:
- version "2.20.3"
- resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
- integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
-
-commander@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
- integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
-
-commander@^6.2.1:
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
- integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
-
-common-tags@^1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937"
- integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==
-
-commondir@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
- integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
-
-component-emitter@^1.2.1:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
- integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
-
-compose-function@3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f"
- integrity sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=
- dependencies:
- arity-n "^1.0.4"
-
-compressible@~2.0.16:
- version "2.0.18"
- resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
- integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
- dependencies:
- mime-db ">= 1.43.0 < 2"
-
-compression@^1.7.4:
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
- integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
- dependencies:
- accepts "~1.3.5"
- bytes "3.0.0"
- compressible "~2.0.16"
- debug "2.6.9"
- on-headers "~1.0.2"
- safe-buffer "5.1.2"
- vary "~1.1.2"
-
-compute-scroll-into-view@^1.0.17:
- version "1.0.17"
- resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab"
- integrity sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==
-
-concat-map@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
- integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-
-concat-stream@^1.5.0:
- version "1.6.2"
- resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
- integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
- dependencies:
- buffer-from "^1.0.0"
- inherits "^2.0.3"
- readable-stream "^2.2.2"
- typedarray "^0.0.6"
-
-config-chain@^1.1.12:
- version "1.1.13"
- resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4"
- integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==
- dependencies:
- ini "^1.3.4"
- proto-list "~1.2.1"
-
-confusing-browser-globals@^1.0.10:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz#30d1e7f3d1b882b25ec4933d1d1adac353d20a59"
- integrity sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==
-
-connect-history-api-fallback@^1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc"
- integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
-
-console-browserify@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
- integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
-
-console-control-strings@^1.0.0, console-control-strings@~1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
- integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
-
-constants-browserify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
- integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
-
-content-disposition@0.5.3:
- version "0.5.3"
- resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
- integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
- dependencies:
- safe-buffer "5.1.2"
-
-content-type@~1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
- integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
-
-convert-source-map@1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
- integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
- dependencies:
- safe-buffer "~5.1.1"
-
-convert-source-map@^0.3.3:
- version "0.3.5"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190"
- integrity sha1-8dgClQr33SYxof6+BZZVDIarMZA=
-
-convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
- integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
- dependencies:
- safe-buffer "~5.1.1"
-
-cookie-signature@1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
- integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
-
-cookie@0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
- integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
-
-copy-concurrently@^1.0.0:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
- integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
- dependencies:
- aproba "^1.1.1"
- fs-write-stream-atomic "^1.0.8"
- iferr "^0.1.5"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
- run-queue "^1.0.0"
-
-copy-descriptor@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
- integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-
-copy-to-clipboard@^3.3.1:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae"
- integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==
- dependencies:
- toggle-selection "^1.0.6"
-
-core-js-compat@^3.14.0, core-js-compat@^3.16.0, core-js-compat@^3.6.2, core-js-compat@^3.8.1:
- version "3.17.3"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.17.3.tgz#b39c8e4dec71ecdc735c653ce5233466e561324e"
- integrity sha512-+in61CKYs4hQERiADCJsdgewpdl/X0GhEX77pjKgbeibXviIt2oxEjTc8O2fqHX8mDdBrDvX8MYD/RYsBv4OiA==
- dependencies:
- browserslist "^4.17.0"
- semver "7.0.0"
-
-core-js-pure@^3.16.0, core-js-pure@^3.8.2:
- version "3.17.3"
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.17.3.tgz#98ea3587188ab7ef4695db6518eeb71aec42604a"
- integrity sha512-YusrqwiOTTn8058JDa0cv9unbXdIiIgcgI9gXso0ey4WgkFLd3lYlV9rp9n7nDCsYxXsMDTjA4m1h3T348mdlQ==
-
-core-js@^2.4.0:
- version "2.6.12"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec"
- integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
-
-core-js@^3.0.4, core-js@^3.6.5, core-js@^3.8.2:
- version "3.17.3"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.17.3.tgz#8e8bd20e91df9951e903cabe91f9af4a0895bc1e"
- integrity sha512-lyvajs+wd8N1hXfzob1LdOCCHFU4bGMbqqmLn1Q4QlCpDqWPpGf+p0nj+LNrvDDG33j0hZXw2nsvvVpHysxyNw==
-
-core-util-is@~1.0.0:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
- integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
-
-cosmiconfig@^5.0.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
- integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
- dependencies:
- import-fresh "^2.0.0"
- is-directory "^0.3.1"
- js-yaml "^3.13.1"
- parse-json "^4.0.0"
-
-cosmiconfig@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
- integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
- dependencies:
- "@types/parse-json" "^4.0.0"
- import-fresh "^3.1.0"
- parse-json "^5.0.0"
- path-type "^4.0.0"
- yaml "^1.7.2"
-
-cosmiconfig@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d"
- integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==
- dependencies:
- "@types/parse-json" "^4.0.0"
- import-fresh "^3.2.1"
- parse-json "^5.0.0"
- path-type "^4.0.0"
- yaml "^1.10.0"
-
-cp-file@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/cp-file/-/cp-file-7.0.0.tgz#b9454cfd07fe3b974ab9ea0e5f29655791a9b8cd"
- integrity sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==
- dependencies:
- graceful-fs "^4.1.2"
- make-dir "^3.0.0"
- nested-error-stacks "^2.0.0"
- p-event "^4.1.0"
-
-cpy@^8.1.1:
- version "8.1.2"
- resolved "https://registry.yarnpkg.com/cpy/-/cpy-8.1.2.tgz#e339ea54797ad23f8e3919a5cffd37bfc3f25935"
- integrity sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==
- dependencies:
- arrify "^2.0.1"
- cp-file "^7.0.0"
- globby "^9.2.0"
- has-glob "^1.0.0"
- junk "^3.1.0"
- nested-error-stacks "^2.1.0"
- p-all "^2.1.0"
- p-filter "^2.1.0"
- p-map "^3.0.0"
-
-create-ecdh@^4.0.0:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
- integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
- dependencies:
- bn.js "^4.1.0"
- elliptic "^6.5.3"
-
-create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
- integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
- dependencies:
- cipher-base "^1.0.1"
- inherits "^2.0.1"
- md5.js "^1.3.4"
- ripemd160 "^2.0.1"
- sha.js "^2.4.0"
-
-create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
- integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
- dependencies:
- cipher-base "^1.0.3"
- create-hash "^1.1.0"
- inherits "^2.0.1"
- ripemd160 "^2.0.0"
- safe-buffer "^5.0.1"
- sha.js "^2.4.8"
-
-create-react-context@0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c"
- integrity sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==
- dependencies:
- gud "^1.0.0"
- warning "^4.0.3"
-
-cross-spawn@7.0.3, cross-spawn@^7.0.0, cross-spawn@^7.0.2:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
- integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
- dependencies:
- path-key "^3.1.0"
- shebang-command "^2.0.0"
- which "^2.0.1"
-
-cross-spawn@^6.0.0:
- version "6.0.5"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
- integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
- dependencies:
- nice-try "^1.0.4"
- path-key "^2.0.1"
- semver "^5.5.0"
- shebang-command "^1.2.0"
- which "^1.2.9"
-
-crypto-browserify@^3.11.0:
- version "3.12.0"
- resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
- integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
- dependencies:
- browserify-cipher "^1.0.0"
- browserify-sign "^4.0.0"
- create-ecdh "^4.0.0"
- create-hash "^1.1.0"
- create-hmac "^1.1.0"
- diffie-hellman "^5.0.0"
- inherits "^2.0.1"
- pbkdf2 "^3.0.3"
- public-encrypt "^4.0.0"
- randombytes "^2.0.0"
- randomfill "^1.0.3"
-
-crypto-random-string@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
- integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=
-
-css-blank-pseudo@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5"
- integrity sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==
- dependencies:
- postcss "^7.0.5"
-
-css-color-names@0.0.4, css-color-names@^0.0.4:
- version "0.0.4"
- resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
- integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
-
-css-declaration-sorter@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22"
- integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==
- dependencies:
- postcss "^7.0.1"
- timsort "^0.3.0"
-
-css-has-pseudo@^0.10.0:
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz#3c642ab34ca242c59c41a125df9105841f6966ee"
- integrity sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==
- dependencies:
- postcss "^7.0.6"
- postcss-selector-parser "^5.0.0-rc.4"
-
-css-loader@4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-4.3.0.tgz#c888af64b2a5b2e85462c72c0f4a85c7e2e0821e"
- integrity sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==
- dependencies:
- camelcase "^6.0.0"
- cssesc "^3.0.0"
- icss-utils "^4.1.1"
- loader-utils "^2.0.0"
- postcss "^7.0.32"
- postcss-modules-extract-imports "^2.0.0"
- postcss-modules-local-by-default "^3.0.3"
- postcss-modules-scope "^2.2.0"
- postcss-modules-values "^3.0.0"
- postcss-value-parser "^4.1.0"
- schema-utils "^2.7.1"
- semver "^7.3.2"
-
-css-loader@^3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645"
- integrity sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==
- dependencies:
- camelcase "^5.3.1"
- cssesc "^3.0.0"
- icss-utils "^4.1.1"
- loader-utils "^1.2.3"
- normalize-path "^3.0.0"
- postcss "^7.0.32"
- postcss-modules-extract-imports "^2.0.0"
- postcss-modules-local-by-default "^3.0.2"
- postcss-modules-scope "^2.2.0"
- postcss-modules-values "^3.0.0"
- postcss-value-parser "^4.1.0"
- schema-utils "^2.7.0"
- semver "^6.3.0"
-
-css-prefers-color-scheme@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4"
- integrity sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==
- dependencies:
- postcss "^7.0.5"
-
-css-select-base-adapter@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
- integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
-
-css-select@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
- integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
- dependencies:
- boolbase "^1.0.0"
- css-what "^3.2.1"
- domutils "^1.7.0"
- nth-check "^1.0.2"
-
-css-select@^4.1.3:
- version "4.1.3"
- resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.1.3.tgz#a70440f70317f2669118ad74ff105e65849c7067"
- integrity sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==
- dependencies:
- boolbase "^1.0.0"
- css-what "^5.0.0"
- domhandler "^4.2.0"
- domutils "^2.6.0"
- nth-check "^2.0.0"
-
-css-tree@1.0.0-alpha.37:
- version "1.0.0-alpha.37"
- resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
- integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
- dependencies:
- mdn-data "2.0.4"
- source-map "^0.6.1"
-
-css-tree@^1.1.2:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"
- integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==
- dependencies:
- mdn-data "2.0.14"
- source-map "^0.6.1"
-
-css-vendor@^2.0.8:
- version "2.0.8"
- resolved "https://registry.yarnpkg.com/css-vendor/-/css-vendor-2.0.8.tgz#e47f91d3bd3117d49180a3c935e62e3d9f7f449d"
- integrity sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==
- dependencies:
- "@babel/runtime" "^7.8.3"
- is-in-browser "^1.0.2"
-
-css-what@^3.2.1:
- version "3.4.2"
- resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4"
- integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==
-
-css-what@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/css-what/-/css-what-5.0.1.tgz#3efa820131f4669a8ac2408f9c32e7c7de9f4cad"
- integrity sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==
-
-css.escape@^1.5.1:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"
- integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=
-
-css@^2.0.0:
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929"
- integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==
- dependencies:
- inherits "^2.0.3"
- source-map "^0.6.1"
- source-map-resolve "^0.5.2"
- urix "^0.1.0"
-
-css@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/css/-/css-3.0.0.tgz#4447a4d58fdd03367c516ca9f64ae365cee4aa5d"
- integrity sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==
- dependencies:
- inherits "^2.0.4"
- source-map "^0.6.1"
- source-map-resolve "^0.6.0"
-
-cssdb@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0"
- integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==
-
-cssesc@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
- integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
-
-cssesc@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
- integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
-
-cssnano-preset-default@^4.0.8:
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz#920622b1fc1e95a34e8838203f1397a504f2d3ff"
- integrity sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==
- dependencies:
- css-declaration-sorter "^4.0.1"
- cssnano-util-raw-cache "^4.0.1"
- postcss "^7.0.0"
- postcss-calc "^7.0.1"
- postcss-colormin "^4.0.3"
- postcss-convert-values "^4.0.1"
- postcss-discard-comments "^4.0.2"
- postcss-discard-duplicates "^4.0.2"
- postcss-discard-empty "^4.0.1"
- postcss-discard-overridden "^4.0.1"
- postcss-merge-longhand "^4.0.11"
- postcss-merge-rules "^4.0.3"
- postcss-minify-font-values "^4.0.2"
- postcss-minify-gradients "^4.0.2"
- postcss-minify-params "^4.0.2"
- postcss-minify-selectors "^4.0.2"
- postcss-normalize-charset "^4.0.1"
- postcss-normalize-display-values "^4.0.2"
- postcss-normalize-positions "^4.0.2"
- postcss-normalize-repeat-style "^4.0.2"
- postcss-normalize-string "^4.0.2"
- postcss-normalize-timing-functions "^4.0.2"
- postcss-normalize-unicode "^4.0.1"
- postcss-normalize-url "^4.0.1"
- postcss-normalize-whitespace "^4.0.2"
- postcss-ordered-values "^4.1.2"
- postcss-reduce-initial "^4.0.3"
- postcss-reduce-transforms "^4.0.2"
- postcss-svgo "^4.0.3"
- postcss-unique-selectors "^4.0.1"
-
-cssnano-util-get-arguments@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f"
- integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=
-
-cssnano-util-get-match@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d"
- integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=
-
-cssnano-util-raw-cache@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282"
- integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==
- dependencies:
- postcss "^7.0.0"
-
-cssnano-util-same-parent@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3"
- integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==
-
-cssnano@^4.1.10:
- version "4.1.11"
- resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.11.tgz#c7b5f5b81da269cb1fd982cb960c1200910c9a99"
- integrity sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==
- dependencies:
- cosmiconfig "^5.0.0"
- cssnano-preset-default "^4.0.8"
- is-resolvable "^1.0.0"
- postcss "^7.0.0"
-
-csso@^4.0.2:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
- integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
- dependencies:
- css-tree "^1.1.2"
-
-cssom@^0.4.4:
- version "0.4.4"
- resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
- integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
-
-cssom@~0.3.6:
- version "0.3.8"
- resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
- integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
-
-cssstyle@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
- integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
- dependencies:
- cssom "~0.3.6"
-
-csstype@^2.5.2, csstype@^2.5.7:
- version "2.6.17"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.17.tgz#4cf30eb87e1d1a005d8b6510f95292413f6a1c0e"
- integrity sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A==
-
-csstype@^3.0.2:
- version "3.0.8"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340"
- integrity sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==
-
-cyclist@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
- integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
-
-d@1, d@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a"
- integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==
- dependencies:
- es5-ext "^0.10.50"
- type "^1.0.1"
-
-damerau-levenshtein@^1.0.6:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz#64368003512a1a6992593741a09a9d31a836f55d"
- integrity sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==
-
-data-urls@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
- integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
- dependencies:
- abab "^2.0.3"
- whatwg-mimetype "^2.3.0"
- whatwg-url "^8.0.0"
-
-date-fns@^2.23.0:
- version "2.23.0"
- resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.23.0.tgz#4e886c941659af0cf7b30fafdd1eaa37e88788a9"
- integrity sha512-5ycpauovVyAk0kXNZz6ZoB9AYMZB4DObse7P3BPWmyEjXNORTI8EJ6X0uaSAq4sCHzM1uajzrkr6HnsLQpxGXA==
-
-debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
- version "2.6.9"
- resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
- integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
- dependencies:
- ms "2.0.0"
-
-debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
- integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
- dependencies:
- ms "2.1.2"
-
-debug@^3.0.0, debug@^3.1.1, debug@^3.2.6, debug@^3.2.7:
- version "3.2.7"
- resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
- integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
- dependencies:
- ms "^2.1.1"
-
-decamelize@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
- integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
-
-decimal.js@^10.2.1:
- version "10.3.1"
- resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783"
- integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==
-
-decode-uri-component@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
- integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
-
-dedent@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
- integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
-
-deep-equal@^1.0.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a"
- integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==
- dependencies:
- is-arguments "^1.0.4"
- is-date-object "^1.0.1"
- is-regex "^1.0.4"
- object-is "^1.0.1"
- object-keys "^1.1.1"
- regexp.prototype.flags "^1.2.0"
-
-deep-is@^0.1.3, deep-is@~0.1.3:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
- integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
-
-deep-object-diff@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a"
- integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==
-
-deepmerge@^4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
- integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
-
-default-gateway@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b"
- integrity sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==
- dependencies:
- execa "^1.0.0"
- ip-regex "^2.1.0"
-
-define-properties@^1.1.2, define-properties@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
- integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
- dependencies:
- object-keys "^1.0.12"
-
-define-property@^0.2.5:
- version "0.2.5"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
- integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
- dependencies:
- is-descriptor "^0.1.0"
-
-define-property@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
- integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
- dependencies:
- is-descriptor "^1.0.0"
-
-define-property@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
- integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
- dependencies:
- is-descriptor "^1.0.2"
- isobject "^3.0.1"
-
-del@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4"
- integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==
- dependencies:
- "@types/glob" "^7.1.1"
- globby "^6.1.0"
- is-path-cwd "^2.0.0"
- is-path-in-cwd "^2.0.0"
- p-map "^2.0.0"
- pify "^4.0.1"
- rimraf "^2.6.3"
-
-delayed-stream@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
- integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
-
-delegates@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
- integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
-
-depd@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
- integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
-
-des.js@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
- integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
- dependencies:
- inherits "^2.0.1"
- minimalistic-assert "^1.0.0"
-
-destroy@~1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
- integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
-
-detab@2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43"
- integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==
- dependencies:
- repeat-string "^1.5.4"
-
-detect-newline@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
- integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
-
-detect-node@^2.0.4:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1"
- integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==
-
-detect-port-alt@1.1.6:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275"
- integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==
- dependencies:
- address "^1.0.1"
- debug "^2.6.0"
-
-detect-port@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.3.0.tgz#d9c40e9accadd4df5cac6a782aefd014d573d1f1"
- integrity sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==
- dependencies:
- address "^1.0.1"
- debug "^2.6.0"
-
-dexie@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/dexie/-/dexie-3.0.3.tgz#ede63849dfe5f07e13e99bb72a040e8ac1d29dab"
- integrity sha512-BSFhGpngnCl1DOr+8YNwBDobRMH0ziJs2vts69VilwetHYOtEDcLqo7d/XiIphM0tJZ2rPPyAGd31lgH2Ln3nw==
-
-diff-sequences@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1"
- integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==
-
-diff-sequences@^27.0.6:
- version "27.0.6"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723"
- integrity sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==
-
-diffie-hellman@^5.0.0:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
- integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
- dependencies:
- bn.js "^4.1.0"
- miller-rabin "^4.0.0"
- randombytes "^2.0.0"
-
-dir-glob@^2.2.2:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4"
- integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==
- dependencies:
- path-type "^3.0.0"
-
-dir-glob@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
- integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
- dependencies:
- path-type "^4.0.0"
-
-dns-equal@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
- integrity sha1-s55/HabrCnW6nBcySzR1PEfgZU0=
-
-dns-packet@^1.3.1:
- version "1.3.4"
- resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.4.tgz#e3455065824a2507ba886c55a89963bb107dec6f"
- integrity sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==
- dependencies:
- ip "^1.1.0"
- safe-buffer "^5.0.1"
-
-dns-txt@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6"
- integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=
- dependencies:
- buffer-indexof "^1.0.0"
-
-doctrine@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
- integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
- dependencies:
- esutils "^2.0.2"
-
-doctrine@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
- integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
- dependencies:
- esutils "^2.0.2"
-
-dom-accessibility-api@^0.5.6:
- version "0.5.7"
- resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.7.tgz#8c2aa6325968f2933160a0b7dbb380893ddf3e7d"
- integrity sha512-ml3lJIq9YjUfM9TUnEPvEYWFSwivwIGBPKpewX7tii7fwCazA8yCioGdqQcNsItPpfFvSJ3VIdMQPj60LJhcQA==
-
-dom-converter@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
- integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==
- dependencies:
- utila "~0.4"
-
-dom-helpers@^5.0.1:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902"
- integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==
- dependencies:
- "@babel/runtime" "^7.8.7"
- csstype "^3.0.2"
-
-dom-serializer@0:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
- integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
- dependencies:
- domelementtype "^2.0.1"
- entities "^2.0.0"
-
-dom-serializer@^1.0.1:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91"
- integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==
- dependencies:
- domelementtype "^2.0.1"
- domhandler "^4.2.0"
- entities "^2.0.0"
-
-dom-walk@^0.1.0:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84"
- integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==
-
-domain-browser@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
- integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
-
-domelementtype@1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
- integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
-
-domelementtype@^2.0.1, domelementtype@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57"
- integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==
-
-domexception@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304"
- integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
- dependencies:
- webidl-conversions "^5.0.0"
-
-domhandler@^4.0.0, domhandler@^4.2.0:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz#e825d721d19a86b8c201a35264e226c678ee755f"
- integrity sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==
- dependencies:
- domelementtype "^2.2.0"
-
-domutils@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
- integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
- dependencies:
- dom-serializer "0"
- domelementtype "1"
-
-domutils@^2.5.2, domutils@^2.6.0:
- version "2.8.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
- integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==
- dependencies:
- dom-serializer "^1.0.1"
- domelementtype "^2.2.0"
- domhandler "^4.2.0"
-
-dot-case@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
- integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==
- dependencies:
- no-case "^3.0.4"
- tslib "^2.0.3"
-
-dot-prop@^5.2.0:
- version "5.3.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
- integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
- dependencies:
- is-obj "^2.0.0"
-
-dotenv-defaults@^1.0.2:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/dotenv-defaults/-/dotenv-defaults-1.1.1.tgz#032c024f4b5906d9990eb06d722dc74cc60ec1bd"
- integrity sha512-6fPRo9o/3MxKvmRZBD3oNFdxODdhJtIy1zcJeUSCs6HCy4tarUpd+G67UTU9tF6OWXeSPqsm4fPAB+2eY9Rt9Q==
- dependencies:
- dotenv "^6.2.0"
-
-dotenv-expand@5.1.0, dotenv-expand@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0"
- integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==
-
-dotenv-webpack@^1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/dotenv-webpack/-/dotenv-webpack-1.8.0.tgz#7ca79cef2497dd4079d43e81e0796bc9d0f68a5e"
- integrity sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg==
- dependencies:
- dotenv-defaults "^1.0.2"
-
-dotenv@8.2.0:
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a"
- integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
-
-dotenv@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064"
- integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==
-
-dotenv@^8.0.0:
- version "8.6.0"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b"
- integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==
-
-downshift@^6.0.15:
- version "6.1.7"
- resolved "https://registry.yarnpkg.com/downshift/-/downshift-6.1.7.tgz#fdb4c4e4f1d11587985cd76e21e8b4b3fa72e44c"
- integrity sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==
- dependencies:
- "@babel/runtime" "^7.14.8"
- compute-scroll-into-view "^1.0.17"
- prop-types "^15.7.2"
- react-is "^17.0.2"
- tslib "^2.3.0"
-
-duplexer@^0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
- integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
-
-duplexify@^3.4.2, duplexify@^3.6.0:
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
- integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
- dependencies:
- end-of-stream "^1.0.0"
- inherits "^2.0.1"
- readable-stream "^2.0.0"
- stream-shift "^1.0.0"
-
-editorconfig@^0.15.3:
- version "0.15.3"
- resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5"
- integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==
- dependencies:
- commander "^2.19.0"
- lru-cache "^4.1.5"
- semver "^5.6.0"
- sigmund "^1.0.1"
-
-ee-first@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
- integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-
-ejs@^2.6.1:
- version "2.7.4"
- resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
- integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
-
-electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.830:
- version "1.3.835"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.835.tgz#98fa4402ab7bc6afbe4953a8ca9b63cb3a6bf08b"
- integrity sha512-rHQszGg2KLMqOWPNTpwCnlp7Kb85haJa8j089DJCreZueykoSN/in+EMlay3SSDMNKR4VGPvfskxofHV18xVJg==
-
-element-resize-detector@^1.2.2:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/element-resize-detector/-/element-resize-detector-1.2.3.tgz#5078d9b99398fe4c589f8c8df94ff99e5d413ff3"
- integrity sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ==
- dependencies:
- batch-processor "1.0.0"
-
-elliptic@^6.5.3:
- version "6.5.4"
- resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
- integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
- dependencies:
- bn.js "^4.11.9"
- brorand "^1.1.0"
- hash.js "^1.0.0"
- hmac-drbg "^1.0.1"
- inherits "^2.0.4"
- minimalistic-assert "^1.0.1"
- minimalistic-crypto-utils "^1.0.1"
-
-emittery@^0.7.1:
- version "0.7.2"
- resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.2.tgz#25595908e13af0f5674ab419396e2fb394cdfa82"
- integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==
-
-emoji-regex@^7.0.1:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
- integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
-
-emoji-regex@^8.0.0:
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
- integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
-
-emoji-regex@^9.0.0:
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
- integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
-
-emojis-list@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
- integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
-
-emojis-list@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
- integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
-
-emotion-theming@^10.0.27:
- version "10.0.27"
- resolved "https://registry.yarnpkg.com/emotion-theming/-/emotion-theming-10.0.27.tgz#1887baaec15199862c89b1b984b79806f2b9ab10"
- integrity sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==
- dependencies:
- "@babel/runtime" "^7.5.5"
- "@emotion/weak-memoize" "0.2.5"
- hoist-non-react-statics "^3.3.0"
-
-encodeurl@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
- integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
-
-end-of-stream@^1.0.0, end-of-stream@^1.1.0:
- version "1.4.4"
- resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
- integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
- dependencies:
- once "^1.4.0"
-
-endent@^2.0.1:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/endent/-/endent-2.1.0.tgz#5aaba698fb569e5e18e69e1ff7a28ff35373cd88"
- integrity sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==
- dependencies:
- dedent "^0.7.0"
- fast-json-parse "^1.0.3"
- objectorarray "^1.0.5"
-
-enhanced-resolve@^4.3.0, enhanced-resolve@^4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"
- integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
- dependencies:
- graceful-fs "^4.1.2"
- memory-fs "^0.5.0"
- tapable "^1.0.0"
-
-enquirer@^2.3.5:
- version "2.3.6"
- resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
- integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
- dependencies:
- ansi-colors "^4.1.1"
-
-entities@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
- integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
-
-errno@^0.1.3, errno@~0.1.7:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
- integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
- dependencies:
- prr "~1.0.1"
-
-error-ex@^1.3.1:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
- dependencies:
- is-arrayish "^0.2.1"
-
-error-stack-parser@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.0.6.tgz#5a99a707bd7a4c58a797902d48d82803ede6aad8"
- integrity sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==
- dependencies:
- stackframe "^1.1.1"
-
-es-abstract@^1.17.0-next.0, es-abstract@^1.17.2, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2:
- version "1.18.6"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.6.tgz#2c44e3ea7a6255039164d26559777a6d978cb456"
- integrity sha512-kAeIT4cku5eNLNuUKhlmtuk1/TRZvQoYccn6TO0cSVdf1kzB0T7+dYuVK9MWM7l+/53W2Q8M7N2c6MQvhXFcUQ==
- dependencies:
- call-bind "^1.0.2"
- es-to-primitive "^1.2.1"
- function-bind "^1.1.1"
- get-intrinsic "^1.1.1"
- get-symbol-description "^1.0.0"
- has "^1.0.3"
- has-symbols "^1.0.2"
- internal-slot "^1.0.3"
- is-callable "^1.2.4"
- is-negative-zero "^2.0.1"
- is-regex "^1.1.4"
- is-string "^1.0.7"
- object-inspect "^1.11.0"
- object-keys "^1.1.1"
- object.assign "^4.1.2"
- string.prototype.trimend "^1.0.4"
- string.prototype.trimstart "^1.0.4"
- unbox-primitive "^1.0.1"
-
-es-array-method-boxes-properly@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
- integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
-
-es-get-iterator@^1.0.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.2.tgz#9234c54aba713486d7ebde0220864af5e2b283f7"
- integrity sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==
- dependencies:
- call-bind "^1.0.2"
- get-intrinsic "^1.1.0"
- has-symbols "^1.0.1"
- is-arguments "^1.1.0"
- is-map "^2.0.2"
- is-set "^2.0.2"
- is-string "^1.0.5"
- isarray "^2.0.5"
-
-es-to-primitive@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
- integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
- dependencies:
- is-callable "^1.1.4"
- is-date-object "^1.0.1"
- is-symbol "^1.0.2"
-
-es5-ext@^0.10.35, es5-ext@^0.10.50:
- version "0.10.53"
- resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1"
- integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==
- dependencies:
- es6-iterator "~2.0.3"
- es6-symbol "~3.1.3"
- next-tick "~1.0.0"
-
-es5-shim@^4.5.13:
- version "4.6.2"
- resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.6.2.tgz#827cdd0c6fb5beb26fd368d65430e8b5eaeba942"
- integrity sha512-n0XTVMGps+Deyr38jtqKPR5F5hb9owYeRQcKJW39eFvzUk/u/9Ww315werRzbiNMnHCUw/YHDPBphTlEnzdi+A==
-
-es6-iterator@2.0.3, es6-iterator@~2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7"
- integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c=
- dependencies:
- d "1"
- es5-ext "^0.10.35"
- es6-symbol "^3.1.1"
-
-es6-shim@^0.35.5:
- version "0.35.6"
- resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.6.tgz#d10578301a83af2de58b9eadb7c2c9945f7388a0"
- integrity sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==
-
-es6-symbol@^3.1.1, es6-symbol@~3.1.3:
- version "3.1.3"
- resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18"
- integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==
- dependencies:
- d "^1.0.1"
- ext "^1.1.2"
-
-escalade@^3.0.2, escalade@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
- integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
-
-escape-html@~1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
- integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
-
-escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
- integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
-
-escape-string-regexp@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
- integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
-
-escape-string-regexp@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
- integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
-
-escodegen@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
- integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
- dependencies:
- esprima "^4.0.1"
- estraverse "^5.2.0"
- esutils "^2.0.2"
- optionator "^0.8.1"
- optionalDependencies:
- source-map "~0.6.1"
-
-eslint-config-react-app@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz#ccff9fc8e36b322902844cbd79197982be355a0e"
- integrity sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==
- dependencies:
- confusing-browser-globals "^1.0.10"
-
-eslint-import-resolver-node@^0.3.6:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
- integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
- dependencies:
- debug "^3.2.7"
- resolve "^1.20.0"
-
-eslint-module-utils@^2.6.2:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz#94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534"
- integrity sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q==
- dependencies:
- debug "^3.2.7"
- pkg-dir "^2.0.0"
-
-eslint-plugin-flowtype@^5.2.0:
- version "5.9.2"
- resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.9.2.tgz#aac08cd26ee4da79cba0e40c3877bb4d96a74ebc"
- integrity sha512-qxE/eo9DCN7800MIB/O1ToOiFuOPOlaMJWQY2BEm69oY7RCm3s2X1z4CdgtFvDDWf9RSSugZm1KRhdBMBueKbg==
- dependencies:
- lodash "^4.17.15"
- string-natural-compare "^3.0.1"
-
-eslint-plugin-import@^2.22.1:
- version "2.24.2"
- resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz#2c8cd2e341f3885918ee27d18479910ade7bb4da"
- integrity sha512-hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q==
- dependencies:
- array-includes "^3.1.3"
- array.prototype.flat "^1.2.4"
- debug "^2.6.9"
- doctrine "^2.1.0"
- eslint-import-resolver-node "^0.3.6"
- eslint-module-utils "^2.6.2"
- find-up "^2.0.0"
- has "^1.0.3"
- is-core-module "^2.6.0"
- minimatch "^3.0.4"
- object.values "^1.1.4"
- pkg-up "^2.0.0"
- read-pkg-up "^3.0.0"
- resolve "^1.20.0"
- tsconfig-paths "^3.11.0"
-
-eslint-plugin-jest@^24.1.0:
- version "24.4.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.4.0.tgz#fa4b614dbd46a98b652d830377971f097bda9262"
- integrity sha512-8qnt/hgtZ94E9dA6viqfViKBfkJwFHXgJmTWlMGDgunw1XJEGqm3eiPjDsTanM3/u/3Az82nyQM9GX7PM/QGmg==
- dependencies:
- "@typescript-eslint/experimental-utils" "^4.0.1"
-
-eslint-plugin-jsx-a11y@^6.3.1:
- version "6.4.1"
- resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz#a2d84caa49756942f42f1ffab9002436391718fd"
- integrity sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==
- dependencies:
- "@babel/runtime" "^7.11.2"
- aria-query "^4.2.2"
- array-includes "^3.1.1"
- ast-types-flow "^0.0.7"
- axe-core "^4.0.2"
- axobject-query "^2.2.0"
- damerau-levenshtein "^1.0.6"
- emoji-regex "^9.0.0"
- has "^1.0.3"
- jsx-ast-utils "^3.1.0"
- language-tags "^1.0.5"
-
-eslint-plugin-react-hooks@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556"
- integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==
-
-eslint-plugin-react@^7.21.5:
- version "7.25.1"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.25.1.tgz#9286b7cd9bf917d40309760f403e53016eda8331"
- integrity sha512-P4j9K1dHoFXxDNP05AtixcJEvIT6ht8FhYKsrkY0MPCPaUMYijhpWwNiRDZVtA8KFuZOkGSeft6QwH8KuVpJug==
- dependencies:
- array-includes "^3.1.3"
- array.prototype.flatmap "^1.2.4"
- doctrine "^2.1.0"
- estraverse "^5.2.0"
- has "^1.0.3"
- jsx-ast-utils "^2.4.1 || ^3.0.0"
- minimatch "^3.0.4"
- object.entries "^1.1.4"
- object.fromentries "^2.0.4"
- object.values "^1.1.4"
- prop-types "^15.7.2"
- resolve "^2.0.0-next.3"
- string.prototype.matchall "^4.0.5"
-
-eslint-plugin-testing-library@^3.9.2:
- version "3.10.2"
- resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.2.tgz#609ec2b0369da7cf2e6d9edff5da153cc31d87bd"
- integrity sha512-WAmOCt7EbF1XM8XfbCKAEzAPnShkNSwcIsAD2jHdsMUT9mZJPjLCG7pMzbcC8kK366NOuGip8HKLDC+Xk4yIdA==
- dependencies:
- "@typescript-eslint/experimental-utils" "^3.10.1"
-
-eslint-scope@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
- integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
- dependencies:
- esrecurse "^4.1.0"
- estraverse "^4.1.1"
-
-eslint-scope@^5.0.0, eslint-scope@^5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
- integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
- dependencies:
- esrecurse "^4.3.0"
- estraverse "^4.1.1"
-
-eslint-utils@^2.0.0, eslint-utils@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
- integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
- dependencies:
- eslint-visitor-keys "^1.1.0"
-
-eslint-utils@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
- integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
- dependencies:
- eslint-visitor-keys "^2.0.0"
-
-eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
- integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
-
-eslint-visitor-keys@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
- integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
-
-eslint-webpack-plugin@^2.5.2:
- version "2.5.4"
- resolved "https://registry.yarnpkg.com/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.4.tgz#473b84932f1a8e2c2b8e66a402d0497bf440b986"
- integrity sha512-7rYh0m76KyKSDE+B+2PUQrlNS4HJ51t3WKpkJg6vo2jFMbEPTG99cBV0Dm7LXSHucN4WGCG65wQcRiTFrj7iWw==
- dependencies:
- "@types/eslint" "^7.2.6"
- arrify "^2.0.1"
- jest-worker "^26.6.2"
- micromatch "^4.0.2"
- normalize-path "^3.0.0"
- schema-utils "^3.0.0"
-
-eslint@^7.11.0:
- version "7.32.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"
- integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==
- dependencies:
- "@babel/code-frame" "7.12.11"
- "@eslint/eslintrc" "^0.4.3"
- "@humanwhocodes/config-array" "^0.5.0"
- ajv "^6.10.0"
- chalk "^4.0.0"
- cross-spawn "^7.0.2"
- debug "^4.0.1"
- doctrine "^3.0.0"
- enquirer "^2.3.5"
- escape-string-regexp "^4.0.0"
- eslint-scope "^5.1.1"
- eslint-utils "^2.1.0"
- eslint-visitor-keys "^2.0.0"
- espree "^7.3.1"
- esquery "^1.4.0"
- esutils "^2.0.2"
- fast-deep-equal "^3.1.3"
- file-entry-cache "^6.0.1"
- functional-red-black-tree "^1.0.1"
- glob-parent "^5.1.2"
- globals "^13.6.0"
- ignore "^4.0.6"
- import-fresh "^3.0.0"
- imurmurhash "^0.1.4"
- is-glob "^4.0.0"
- js-yaml "^3.13.1"
- json-stable-stringify-without-jsonify "^1.0.1"
- levn "^0.4.1"
- lodash.merge "^4.6.2"
- minimatch "^3.0.4"
- natural-compare "^1.4.0"
- optionator "^0.9.1"
- progress "^2.0.0"
- regexpp "^3.1.0"
- semver "^7.2.1"
- strip-ansi "^6.0.0"
- strip-json-comments "^3.1.0"
- table "^6.0.9"
- text-table "^0.2.0"
- v8-compile-cache "^2.0.3"
-
-espree@^7.3.0, espree@^7.3.1:
- version "7.3.1"
- resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
- integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
- dependencies:
- acorn "^7.4.0"
- acorn-jsx "^5.3.1"
- eslint-visitor-keys "^1.3.0"
-
-esprima@^4.0.0, esprima@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
- integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-
-esquery@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
- integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
- dependencies:
- estraverse "^5.1.0"
-
-esrecurse@^4.1.0, esrecurse@^4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
- integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
- dependencies:
- estraverse "^5.2.0"
-
-estraverse@^4.1.1:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
- integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
-
-estraverse@^5.1.0, estraverse@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
- integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
-
-estree-to-babel@^3.1.0:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/estree-to-babel/-/estree-to-babel-3.2.1.tgz#82e78315275c3ca74475fdc8ac1a5103c8a75bf5"
- integrity sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==
- dependencies:
- "@babel/traverse" "^7.1.6"
- "@babel/types" "^7.2.0"
- c8 "^7.6.0"
-
-estree-walker@^0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
- integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
-
-estree-walker@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
- integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
-
-esutils@^2.0.2:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
- integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
-
-etag@~1.8.1:
- version "1.8.1"
- resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
- integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
-
-eventemitter3@^4.0.0:
- version "4.0.7"
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
- integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
-
-events@^3.0.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
- integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
-
-eventsource@^1.0.7:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.1.0.tgz#00e8ca7c92109e94b0ddf32dac677d841028cfaf"
- integrity sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==
- dependencies:
- original "^1.0.0"
-
-evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
- integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
- dependencies:
- md5.js "^1.3.4"
- safe-buffer "^5.1.1"
-
-exec-sh@^0.3.2:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc"
- integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==
-
-execa@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
- integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
- dependencies:
- cross-spawn "^6.0.0"
- get-stream "^4.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
-execa@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a"
- integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==
- dependencies:
- cross-spawn "^7.0.0"
- get-stream "^5.0.0"
- human-signals "^1.1.1"
- is-stream "^2.0.0"
- merge-stream "^2.0.0"
- npm-run-path "^4.0.0"
- onetime "^5.1.0"
- signal-exit "^3.0.2"
- strip-final-newline "^2.0.0"
-
-exit@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
- integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
-
-expand-brackets@^2.1.4:
- version "2.1.4"
- resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
- integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
- dependencies:
- debug "^2.3.3"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- posix-character-classes "^0.1.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-expect@^26.6.0, expect@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/expect/-/expect-26.6.2.tgz#c6b996bf26bf3fe18b67b2d0f51fc981ba934417"
- integrity sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==
- dependencies:
- "@jest/types" "^26.6.2"
- ansi-styles "^4.0.0"
- jest-get-type "^26.3.0"
- jest-matcher-utils "^26.6.2"
- jest-message-util "^26.6.2"
- jest-regex-util "^26.0.0"
-
-express@^4.17.1:
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
- integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==
- dependencies:
- accepts "~1.3.7"
- array-flatten "1.1.1"
- body-parser "1.19.0"
- content-disposition "0.5.3"
- content-type "~1.0.4"
- cookie "0.4.0"
- cookie-signature "1.0.6"
- debug "2.6.9"
- depd "~1.1.2"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- etag "~1.8.1"
- finalhandler "~1.1.2"
- fresh "0.5.2"
- merge-descriptors "1.0.1"
- methods "~1.1.2"
- on-finished "~2.3.0"
- parseurl "~1.3.3"
- path-to-regexp "0.1.7"
- proxy-addr "~2.0.5"
- qs "6.7.0"
- range-parser "~1.2.1"
- safe-buffer "5.1.2"
- send "0.17.1"
- serve-static "1.14.1"
- setprototypeof "1.1.1"
- statuses "~1.5.0"
- type-is "~1.6.18"
- utils-merge "1.0.1"
- vary "~1.1.2"
-
-ext@^1.1.2:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/ext/-/ext-1.5.0.tgz#e93b97ae0cb23f8370380f6107d2d2b7887687ad"
- integrity sha512-+ONcYoWj/SoQwUofMr94aGu05Ou4FepKi7N7b+O8T4jVfyIsZQV1/xeS8jpaBzF0csAk0KLXoHCxU7cKYZjo1Q==
- dependencies:
- type "^2.5.0"
-
-extend-shallow@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
- integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
- dependencies:
- is-extendable "^0.1.0"
-
-extend-shallow@^3.0.0, extend-shallow@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
- integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
- dependencies:
- assign-symbols "^1.0.0"
- is-extendable "^1.0.1"
-
-extend@^3.0.0:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
- integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
-
-extglob@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
- integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
- dependencies:
- array-unique "^0.3.2"
- define-property "^1.0.0"
- expand-brackets "^2.1.4"
- extend-shallow "^2.0.1"
- fragment-cache "^0.2.1"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
- version "3.1.3"
- resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
- integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
-
-fast-glob@^2.2.6:
- version "2.2.7"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d"
- integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==
- dependencies:
- "@mrmlnc/readdir-enhanced" "^2.2.1"
- "@nodelib/fs.stat" "^1.1.2"
- glob-parent "^3.1.0"
- is-glob "^4.0.0"
- merge2 "^1.2.3"
- micromatch "^3.1.10"
-
-fast-glob@^3.1.1:
- version "3.2.7"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1"
- integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==
- dependencies:
- "@nodelib/fs.stat" "^2.0.2"
- "@nodelib/fs.walk" "^1.2.3"
- glob-parent "^5.1.2"
- merge2 "^1.3.0"
- micromatch "^4.0.4"
-
-fast-json-parse@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/fast-json-parse/-/fast-json-parse-1.0.3.tgz#43e5c61ee4efa9265633046b770fb682a7577c4d"
- integrity sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==
-
-fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
- integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-
-fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
- integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
-
-fastq@^1.6.0:
- version "1.12.0"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.12.0.tgz#ed7b6ab5d62393fb2cc591c853652a5c318bf794"
- integrity sha512-VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg==
- dependencies:
- reusify "^1.0.4"
-
-fault@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13"
- integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==
- dependencies:
- format "^0.2.0"
-
-faye-websocket@^0.11.3:
- version "0.11.4"
- resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da"
- integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==
- dependencies:
- websocket-driver ">=0.5.1"
-
-fb-watchman@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
- integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
- dependencies:
- bser "2.1.1"
-
-figgy-pudding@^3.5.1:
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
- integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
-
-file-entry-cache@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
- integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
- dependencies:
- flat-cache "^3.0.4"
-
-file-loader@6.1.1:
- version "6.1.1"
- resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.1.1.tgz#a6f29dfb3f5933a1c350b2dbaa20ac5be0539baa"
- integrity sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==
- dependencies:
- loader-utils "^2.0.0"
- schema-utils "^3.0.0"
-
-file-loader@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d"
- integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==
- dependencies:
- loader-utils "^2.0.0"
- schema-utils "^3.0.0"
-
-file-system-cache@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/file-system-cache/-/file-system-cache-1.0.5.tgz#84259b36a2bbb8d3d6eb1021d3132ffe64cfff4f"
- integrity sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=
- dependencies:
- bluebird "^3.3.5"
- fs-extra "^0.30.0"
- ramda "^0.21.0"
-
-file-uri-to-path@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
- integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
-
-filesize@6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00"
- integrity sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==
-
-fill-range@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
- integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
- dependencies:
- extend-shallow "^2.0.1"
- is-number "^3.0.0"
- repeat-string "^1.6.1"
- to-regex-range "^2.1.0"
-
-fill-range@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
- integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
- dependencies:
- to-regex-range "^5.0.1"
-
-finalhandler@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
- integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
- dependencies:
- debug "2.6.9"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- on-finished "~2.3.0"
- parseurl "~1.3.3"
- statuses "~1.5.0"
- unpipe "~1.0.0"
-
-find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
- integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
- dependencies:
- commondir "^1.0.1"
- make-dir "^2.0.0"
- pkg-dir "^3.0.0"
-
-find-cache-dir@^3.3.1:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b"
- integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==
- dependencies:
- commondir "^1.0.1"
- make-dir "^3.0.2"
- pkg-dir "^4.1.0"
-
-find-root@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
- integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
-
-find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
- integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
- dependencies:
- locate-path "^5.0.0"
- path-exists "^4.0.0"
-
-find-up@^2.0.0, find-up@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
- integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
- dependencies:
- locate-path "^2.0.0"
-
-find-up@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
- integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
- dependencies:
- locate-path "^3.0.0"
-
-find-up@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
- integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
- dependencies:
- locate-path "^6.0.0"
- path-exists "^4.0.0"
-
-flat-cache@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
- integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
- dependencies:
- flatted "^3.1.0"
- rimraf "^3.0.2"
-
-flatted@^3.1.0:
- version "3.2.2"
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561"
- integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==
-
-flatten@^1.0.2:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b"
- integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==
-
-flush-write-stream@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
- integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
- dependencies:
- inherits "^2.0.3"
- readable-stream "^2.3.6"
-
-follow-redirects@^1.0.0:
- version "1.14.3"
- resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.3.tgz#6ada78118d8d24caee595595accdc0ac6abd022e"
- integrity sha512-3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw==
-
-fontsource-roboto@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/fontsource-roboto/-/fontsource-roboto-4.0.0.tgz#35eacd4fb8d90199053c0eec9b34a57fb79cd820"
- integrity sha512-zD6L8nvdWRcwSgp4ojxFchG+MPj8kXXQKDEAH9bfhbxy+lkpvpC1WgAK0lCa4dwobv+hvAe0uyHaawcgH7WH/g==
-
-for-in@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
- integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
-
-foreground-child@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53"
- integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==
- dependencies:
- cross-spawn "^7.0.0"
- signal-exit "^3.0.2"
-
-fork-ts-checker-webpack-plugin@4.1.6, fork-ts-checker-webpack-plugin@^4.1.6:
- version "4.1.6"
- resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz#5055c703febcf37fa06405d400c122b905167fc5"
- integrity sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==
- dependencies:
- "@babel/code-frame" "^7.5.5"
- chalk "^2.4.1"
- micromatch "^3.1.10"
- minimatch "^3.0.4"
- semver "^5.6.0"
- tapable "^1.0.0"
- worker-rpc "^0.1.0"
-
-fork-ts-checker-webpack-plugin@^6.0.4:
- version "6.3.3"
- resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.3.3.tgz#73a9d8e1dc5821fa19a3daedc8be7568b095c8ab"
- integrity sha512-S3uMSg8IsIvs0H6VAfojtbf6RcnEXxEpDMT2Q41M2l0m20JO8eA1t4cCJybvrasC8SvvPEtK4B8ztxxfLljhNg==
- dependencies:
- "@babel/code-frame" "^7.8.3"
- "@types/json-schema" "^7.0.5"
- chalk "^4.1.0"
- chokidar "^3.4.2"
- cosmiconfig "^6.0.0"
- deepmerge "^4.2.2"
- fs-extra "^9.0.0"
- glob "^7.1.6"
- memfs "^3.1.2"
- minimatch "^3.0.4"
- schema-utils "2.7.0"
- semver "^7.3.2"
- tapable "^1.0.0"
-
-form-data@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f"
- integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==
- dependencies:
- asynckit "^0.4.0"
- combined-stream "^1.0.8"
- mime-types "^2.1.12"
-
-format@^0.2.0:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b"
- integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=
-
-forwarded@0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
- integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
-
-fragment-cache@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
- integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
- dependencies:
- map-cache "^0.2.2"
-
-fresh@0.5.2:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
- integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
-
-from2@^2.1.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
- integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
- dependencies:
- inherits "^2.0.1"
- readable-stream "^2.0.0"
-
-fs-extra@^0.30.0:
- version "0.30.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
- integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=
- dependencies:
- graceful-fs "^4.1.2"
- jsonfile "^2.1.0"
- klaw "^1.0.0"
- path-is-absolute "^1.0.0"
- rimraf "^2.2.8"
-
-fs-extra@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
- integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==
- dependencies:
- graceful-fs "^4.1.2"
- jsonfile "^4.0.0"
- universalify "^0.1.0"
-
-fs-extra@^8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
- integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
- dependencies:
- graceful-fs "^4.2.0"
- jsonfile "^4.0.0"
- universalify "^0.1.0"
-
-fs-extra@^9.0.0, fs-extra@^9.0.1:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d"
- integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==
- dependencies:
- at-least-node "^1.0.0"
- graceful-fs "^4.2.0"
- jsonfile "^6.0.1"
- universalify "^2.0.0"
-
-fs-minipass@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
- integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
- dependencies:
- minipass "^3.0.0"
-
-fs-monkey@1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3"
- integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==
-
-fs-write-stream-atomic@^1.0.8:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
- integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
- dependencies:
- graceful-fs "^4.1.2"
- iferr "^0.1.5"
- imurmurhash "^0.1.4"
- readable-stream "1 || 2"
-
-fs.realpath@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
- integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-
-fsevents@^1.2.7:
- version "1.2.13"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
- integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
- dependencies:
- bindings "^1.5.0"
- nan "^2.12.1"
-
-fsevents@^2.1.2, fsevents@^2.1.3, fsevents@~2.3.2:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
- integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
-
-function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-
-function.prototype.name@^1.1.0:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.4.tgz#e4ea839b9d3672ae99d0efd9f38d9191c5eaac83"
- integrity sha512-iqy1pIotY/RmhdFZygSSlW0wko2yxkSCKqsuv4pr8QESohpYyG/Z7B/XXvPRKTJS//960rgguE5mSRUsDdaJrQ==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.2"
- functions-have-names "^1.2.2"
-
-functional-red-black-tree@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
- integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
-
-functions-have-names@^1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.2.tgz#98d93991c39da9361f8e50b337c4f6e41f120e21"
- integrity sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==
-
-fuse.js@^3.6.1:
- version "3.6.1"
- resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.6.1.tgz#7de85fdd6e1b3377c23ce010892656385fd9b10c"
- integrity sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==
-
-gauge@~2.7.3:
- version "2.7.4"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
- integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
- dependencies:
- aproba "^1.0.3"
- console-control-strings "^1.0.0"
- has-unicode "^2.0.0"
- object-assign "^4.1.0"
- signal-exit "^3.0.0"
- string-width "^1.0.1"
- strip-ansi "^3.0.1"
- wide-align "^1.1.0"
-
-gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2:
- version "1.0.0-beta.2"
- resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
- integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
-
-get-caller-file@^2.0.1, get-caller-file@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
- integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
- integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
- dependencies:
- function-bind "^1.1.1"
- has "^1.0.3"
- has-symbols "^1.0.1"
-
-get-own-enumerable-property-symbols@^3.0.0:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
- integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
-
-get-package-type@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
- integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
-
-get-stream@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
- integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
- dependencies:
- pump "^3.0.0"
-
-get-stream@^5.0.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
- integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
- dependencies:
- pump "^3.0.0"
-
-get-symbol-description@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
- integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
- dependencies:
- call-bind "^1.0.2"
- get-intrinsic "^1.1.1"
-
-get-value@^2.0.3, get-value@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
- integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
-
-github-slugger@^1.0.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.4.0.tgz#206eb96cdb22ee56fdc53a28d5a302338463444e"
- integrity sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==
-
-glob-base@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
- integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=
- dependencies:
- glob-parent "^2.0.0"
- is-glob "^2.0.0"
-
-glob-parent@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
- integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=
- dependencies:
- is-glob "^2.0.0"
-
-glob-parent@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
- integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
- dependencies:
- is-glob "^3.1.0"
- path-dirname "^1.0.0"
-
-glob-parent@^5.1.2, glob-parent@~5.1.2:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
- integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
- dependencies:
- is-glob "^4.0.1"
-
-glob-promise@^3.4.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-3.4.0.tgz#b6b8f084504216f702dc2ce8c9bc9ac8866fdb20"
- integrity sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==
- dependencies:
- "@types/glob" "*"
-
-glob-to-regexp@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
- integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
-
-glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
- version "7.1.7"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
- integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.0.4"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
-
-global-modules@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
- integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==
- dependencies:
- global-prefix "^3.0.0"
-
-global-prefix@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97"
- integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
- dependencies:
- ini "^1.3.5"
- kind-of "^6.0.2"
- which "^1.3.1"
-
-global@^4.3.2, global@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406"
- integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==
- dependencies:
- min-document "^2.19.0"
- process "^0.11.10"
-
-globals@^11.1.0:
- version "11.12.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
- integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-
-globals@^13.6.0, globals@^13.9.0:
- version "13.11.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.11.0.tgz#40ef678da117fe7bd2e28f1fab24951bd0255be7"
- integrity sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==
- dependencies:
- type-fest "^0.20.2"
-
-globalthis@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b"
- integrity sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==
- dependencies:
- define-properties "^1.1.3"
-
-globby@11.0.1:
- version "11.0.1"
- resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357"
- integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==
- dependencies:
- array-union "^2.1.0"
- dir-glob "^3.0.1"
- fast-glob "^3.1.1"
- ignore "^5.1.4"
- merge2 "^1.3.0"
- slash "^3.0.0"
-
-globby@^11.0.2, globby@^11.0.3:
- version "11.0.4"
- resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"
- integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==
- dependencies:
- array-union "^2.1.0"
- dir-glob "^3.0.1"
- fast-glob "^3.1.1"
- ignore "^5.1.4"
- merge2 "^1.3.0"
- slash "^3.0.0"
-
-globby@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
- integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=
- dependencies:
- array-union "^1.0.1"
- glob "^7.0.3"
- object-assign "^4.0.1"
- pify "^2.0.0"
- pinkie-promise "^2.0.0"
-
-globby@^9.2.0:
- version "9.2.0"
- resolved "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d"
- integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==
- dependencies:
- "@types/glob" "^7.1.1"
- array-union "^1.0.2"
- dir-glob "^2.2.2"
- fast-glob "^2.2.6"
- glob "^7.1.3"
- ignore "^4.0.3"
- pify "^4.0.1"
- slash "^2.0.0"
-
-graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4:
- version "4.2.8"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a"
- integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==
-
-growly@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
- integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
-
-gud@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0"
- integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==
-
-gzip-size@5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
- integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
- dependencies:
- duplexer "^0.1.1"
- pify "^4.0.1"
-
-handle-thing@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e"
- integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==
-
-harmony-reflect@^1.4.6:
- version "1.6.2"
- resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.2.tgz#31ecbd32e648a34d030d86adb67d4d47547fe710"
- integrity sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==
-
-has-bigints@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
- integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
-
-has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
- integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
-
-has-flag@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
- integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-
-has-glob@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-glob/-/has-glob-1.0.0.tgz#9aaa9eedbffb1ba3990a7b0010fb678ee0081207"
- integrity sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=
- dependencies:
- is-glob "^3.0.0"
-
-has-symbols@^1.0.1, has-symbols@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
- integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
-
-has-tostringtag@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
- integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
- dependencies:
- has-symbols "^1.0.2"
-
-has-unicode@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
- integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
-
-has-value@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
- integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
- dependencies:
- get-value "^2.0.3"
- has-values "^0.1.4"
- isobject "^2.0.0"
-
-has-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
- integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
- dependencies:
- get-value "^2.0.6"
- has-values "^1.0.0"
- isobject "^3.0.0"
-
-has-values@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
- integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
-
-has-values@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
- integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
- dependencies:
- is-number "^3.0.0"
- kind-of "^4.0.0"
-
-has@^1.0.0, has@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
- dependencies:
- function-bind "^1.1.1"
-
-hash-base@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
- integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
- dependencies:
- inherits "^2.0.4"
- readable-stream "^3.6.0"
- safe-buffer "^5.2.0"
-
-hash.js@^1.0.0, hash.js@^1.0.3:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
- integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
- dependencies:
- inherits "^2.0.3"
- minimalistic-assert "^1.0.1"
-
-hast-to-hyperscript@^9.0.0:
- version "9.0.1"
- resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz#9b67fd188e4c81e8ad66f803855334173920218d"
- integrity sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==
- dependencies:
- "@types/unist" "^2.0.3"
- comma-separated-tokens "^1.0.0"
- property-information "^5.3.0"
- space-separated-tokens "^1.0.0"
- style-to-object "^0.3.0"
- unist-util-is "^4.0.0"
- web-namespaces "^1.0.0"
-
-hast-util-from-parse5@^6.0.0:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz#554e34abdeea25ac76f5bd950a1f0180e0b3bc2a"
- integrity sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==
- dependencies:
- "@types/parse5" "^5.0.0"
- hastscript "^6.0.0"
- property-information "^5.0.0"
- vfile "^4.0.0"
- vfile-location "^3.2.0"
- web-namespaces "^1.0.0"
-
-hast-util-parse-selector@^2.0.0:
- version "2.2.5"
- resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a"
- integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==
-
-hast-util-raw@6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-6.0.1.tgz#973b15930b7529a7b66984c98148b46526885977"
- integrity sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==
- dependencies:
- "@types/hast" "^2.0.0"
- hast-util-from-parse5 "^6.0.0"
- hast-util-to-parse5 "^6.0.0"
- html-void-elements "^1.0.0"
- parse5 "^6.0.0"
- unist-util-position "^3.0.0"
- vfile "^4.0.0"
- web-namespaces "^1.0.0"
- xtend "^4.0.0"
- zwitch "^1.0.0"
-
-hast-util-to-parse5@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz#1ec44650b631d72952066cea9b1445df699f8479"
- integrity sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==
- dependencies:
- hast-to-hyperscript "^9.0.0"
- property-information "^5.0.0"
- web-namespaces "^1.0.0"
- xtend "^4.0.0"
- zwitch "^1.0.0"
-
-hastscript@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640"
- integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==
- dependencies:
- "@types/hast" "^2.0.0"
- comma-separated-tokens "^1.0.0"
- hast-util-parse-selector "^2.0.0"
- property-information "^5.0.0"
- space-separated-tokens "^1.0.0"
-
-he@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
- integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
-
-hex-color-regex@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
- integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
-
-highlight.js@^10.1.1, highlight.js@~10.7.0:
- version "10.7.3"
- resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531"
- integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==
-
-history@^4.9.0:
- version "4.10.1"
- resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3"
- integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==
- dependencies:
- "@babel/runtime" "^7.1.2"
- loose-envify "^1.2.0"
- resolve-pathname "^3.0.0"
- tiny-invariant "^1.0.2"
- tiny-warning "^1.0.0"
- value-equal "^1.0.1"
-
-hmac-drbg@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
- integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
- dependencies:
- hash.js "^1.0.3"
- minimalistic-assert "^1.0.0"
- minimalistic-crypto-utils "^1.0.1"
-
-hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
- integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
- dependencies:
- react-is "^16.7.0"
-
-hoopy@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d"
- integrity sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==
-
-hosted-git-info@^2.1.4:
- version "2.8.9"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
- integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
-
-hpack.js@^2.1.6:
- version "2.1.6"
- resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
- integrity sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=
- dependencies:
- inherits "^2.0.1"
- obuf "^1.0.0"
- readable-stream "^2.0.1"
- wbuf "^1.1.0"
-
-hsl-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
- integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=
-
-hsla-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
- integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg=
-
-html-encoding-sniffer@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3"
- integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
- dependencies:
- whatwg-encoding "^1.0.5"
-
-html-entities@^1.2.0, html-entities@^1.2.1, html-entities@^1.3.1:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz#cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc"
- integrity sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==
-
-html-escaper@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
- integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
-
-html-minifier-terser@^5.0.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054"
- integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==
- dependencies:
- camel-case "^4.1.1"
- clean-css "^4.2.3"
- commander "^4.1.1"
- he "^1.2.0"
- param-case "^3.0.3"
- relateurl "^0.2.7"
- terser "^4.6.3"
-
-html-tags@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140"
- integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==
-
-html-void-elements@^1.0.0:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483"
- integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==
-
-html-webpack-plugin@4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz#625097650886b97ea5dae331c320e3238f6c121c"
- integrity sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==
- dependencies:
- "@types/html-minifier-terser" "^5.0.0"
- "@types/tapable" "^1.0.5"
- "@types/webpack" "^4.41.8"
- html-minifier-terser "^5.0.1"
- loader-utils "^1.2.3"
- lodash "^4.17.15"
- pretty-error "^2.1.1"
- tapable "^1.1.3"
- util.promisify "1.0.0"
-
-html-webpack-plugin@^4.0.0:
- version "4.5.2"
- resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz#76fc83fa1a0f12dd5f7da0404a54e2699666bc12"
- integrity sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==
- dependencies:
- "@types/html-minifier-terser" "^5.0.0"
- "@types/tapable" "^1.0.5"
- "@types/webpack" "^4.41.8"
- html-minifier-terser "^5.0.1"
- loader-utils "^1.2.3"
- lodash "^4.17.20"
- pretty-error "^2.1.1"
- tapable "^1.1.3"
- util.promisify "1.0.0"
-
-htmlparser2@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7"
- integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==
- dependencies:
- domelementtype "^2.0.1"
- domhandler "^4.0.0"
- domutils "^2.5.2"
- entities "^2.0.0"
-
-http-deceiver@^1.2.7:
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
- integrity sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=
-
-http-errors@1.7.2:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
- integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
- dependencies:
- depd "~1.1.2"
- inherits "2.0.3"
- setprototypeof "1.1.1"
- statuses ">= 1.5.0 < 2"
- toidentifier "1.0.0"
-
-http-errors@~1.6.2:
- version "1.6.3"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
- integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=
- dependencies:
- depd "~1.1.2"
- inherits "2.0.3"
- setprototypeof "1.1.0"
- statuses ">= 1.4.0 < 2"
-
-http-errors@~1.7.2:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
- integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
- dependencies:
- depd "~1.1.2"
- inherits "2.0.4"
- setprototypeof "1.1.1"
- statuses ">= 1.5.0 < 2"
- toidentifier "1.0.0"
-
-http-parser-js@>=0.5.1:
- version "0.5.3"
- resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.3.tgz#01d2709c79d41698bb01d4decc5e9da4e4a033d9"
- integrity sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==
-
-http-proxy-agent@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
- integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
- dependencies:
- "@tootallnate/once" "1"
- agent-base "6"
- debug "4"
-
-http-proxy-middleware@0.19.1:
- version "0.19.1"
- resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a"
- integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
- dependencies:
- http-proxy "^1.17.0"
- is-glob "^4.0.0"
- lodash "^4.17.11"
- micromatch "^3.1.10"
-
-http-proxy@^1.17.0:
- version "1.18.1"
- resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
- integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
- dependencies:
- eventemitter3 "^4.0.0"
- follow-redirects "^1.0.0"
- requires-port "^1.0.0"
-
-https-browserify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
- integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
-
-https-proxy-agent@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2"
- integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==
- dependencies:
- agent-base "6"
- debug "4"
-
-human-signals@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
- integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
-
-hyphenate-style-name@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d"
- integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==
-
-iconv-lite@0.4.24:
- version "0.4.24"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
- integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
- dependencies:
- safer-buffer ">= 2.1.2 < 3"
-
-icss-utils@^4.0.0, icss-utils@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
- integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
- dependencies:
- postcss "^7.0.14"
-
-identity-obj-proxy@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz#94d2bda96084453ef36fbc5aaec37e0f79f1fc14"
- integrity sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=
- dependencies:
- harmony-reflect "^1.4.6"
-
-ieee754@^1.1.4:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
- integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
-
-iferr@^0.1.5:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
- integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
-
-ignore@^4.0.3, ignore@^4.0.6:
- version "4.0.6"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
- integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
-
-ignore@^5.1.4:
- version "5.1.8"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
- integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
-
-immer@8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/immer/-/immer-8.0.1.tgz#9c73db683e2b3975c424fb0572af5889877ae656"
- integrity sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==
-
-import-cwd@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
- integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=
- dependencies:
- import-from "^2.1.0"
-
-import-fresh@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
- integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
- dependencies:
- caller-path "^2.0.0"
- resolve-from "^3.0.0"
-
-import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
- integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
- dependencies:
- parent-module "^1.0.0"
- resolve-from "^4.0.0"
-
-import-from@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
- integrity sha1-M1238qev/VOqpHHUuAId7ja387E=
- dependencies:
- resolve-from "^3.0.0"
-
-import-local@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
- integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
- dependencies:
- pkg-dir "^3.0.0"
- resolve-cwd "^2.0.0"
-
-import-local@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6"
- integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
- dependencies:
- pkg-dir "^4.2.0"
- resolve-cwd "^3.0.0"
-
-imurmurhash@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
- integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
-
-indent-string@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
- integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
-
-indexes-of@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
- integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
-
-infer-owner@^1.0.3, infer-owner@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
- integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
-
-inflight@^1.0.4:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
- integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
- dependencies:
- once "^1.3.0"
- wrappy "1"
-
-inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
- integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-
-inherits@2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
- integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
-
-inherits@2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
- integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
-
-ini@^1.3.4, ini@^1.3.5:
- version "1.3.8"
- resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
- integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
-
-inline-style-parser@0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
- integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
-
-internal-ip@^4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907"
- integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==
- dependencies:
- default-gateway "^4.2.0"
- ipaddr.js "^1.9.0"
-
-internal-slot@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
- integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
- dependencies:
- get-intrinsic "^1.1.0"
- has "^1.0.3"
- side-channel "^1.0.4"
-
-interpret@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9"
- integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==
-
-invariant@^2.2.3, invariant@^2.2.4:
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
- integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
- dependencies:
- loose-envify "^1.0.0"
-
-ip-regex@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
- integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
-
-ip@^1.1.0, ip@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
- integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=
-
-ipaddr.js@1.9.1, ipaddr.js@^1.9.0:
- version "1.9.1"
- resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
- integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
-
-is-absolute-url@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
- integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=
-
-is-absolute-url@^3.0.0, is-absolute-url@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698"
- integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
-
-is-accessor-descriptor@^0.1.6:
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
- integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
- dependencies:
- kind-of "^3.0.2"
-
-is-accessor-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
- integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
- dependencies:
- kind-of "^6.0.0"
-
-is-alphabetical@1.0.4, is-alphabetical@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
- integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==
-
-is-alphanumerical@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf"
- integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==
- dependencies:
- is-alphabetical "^1.0.0"
- is-decimal "^1.0.0"
-
-is-arguments@^1.0.4, is-arguments@^1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
- integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
- dependencies:
- call-bind "^1.0.2"
- has-tostringtag "^1.0.0"
-
-is-arrayish@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
- integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
-
-is-arrayish@^0.3.1:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
- integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
-
-is-bigint@^1.0.1:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
- integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
- dependencies:
- has-bigints "^1.0.1"
-
-is-binary-path@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
- integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
- dependencies:
- binary-extensions "^1.0.0"
-
-is-binary-path@~2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
- integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
- dependencies:
- binary-extensions "^2.0.0"
-
-is-boolean-object@^1.1.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
- integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
- dependencies:
- call-bind "^1.0.2"
- has-tostringtag "^1.0.0"
-
-is-buffer@^1.1.5:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
- integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
-
-is-buffer@^2.0.0:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
- integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
-
-is-callable@^1.1.4, is-callable@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
- integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
-
-is-ci@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
- integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
- dependencies:
- ci-info "^2.0.0"
-
-is-color-stop@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345"
- integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=
- dependencies:
- css-color-names "^0.0.4"
- hex-color-regex "^1.1.0"
- hsl-regex "^1.0.0"
- hsla-regex "^1.0.0"
- rgb-regex "^1.0.1"
- rgba-regex "^1.0.0"
-
-is-core-module@^2.0.0, is-core-module@^2.2.0, is-core-module@^2.6.0:
- version "2.6.0"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.6.0.tgz#d7553b2526fe59b92ba3e40c8df757ec8a709e19"
- integrity sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==
- dependencies:
- has "^1.0.3"
-
-is-data-descriptor@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
- integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
- dependencies:
- kind-of "^3.0.2"
-
-is-data-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
- integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
- dependencies:
- kind-of "^6.0.0"
-
-is-date-object@^1.0.1:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
- integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
- dependencies:
- has-tostringtag "^1.0.0"
-
-is-decimal@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"
- integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==
-
-is-descriptor@^0.1.0:
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
- integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
- dependencies:
- is-accessor-descriptor "^0.1.6"
- is-data-descriptor "^0.1.4"
- kind-of "^5.0.0"
-
-is-descriptor@^1.0.0, is-descriptor@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
- integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
- dependencies:
- is-accessor-descriptor "^1.0.0"
- is-data-descriptor "^1.0.0"
- kind-of "^6.0.2"
-
-is-directory@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
- integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
-
-is-docker@^2.0.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
- integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
-
-is-dom@^1.0.0, is-dom@^1.0.9:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-dom/-/is-dom-1.1.0.tgz#af1fced292742443bb59ca3f76ab5e80907b4e8a"
- integrity sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==
- dependencies:
- is-object "^1.0.1"
- is-window "^1.0.2"
-
-is-extendable@^0.1.0, is-extendable@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
- integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
-
-is-extendable@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
- integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
- dependencies:
- is-plain-object "^2.0.4"
-
-is-extglob@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
- integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=
-
-is-extglob@^2.1.0, is-extglob@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
- integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
-
-is-fullwidth-code-point@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
- integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
- dependencies:
- number-is-nan "^1.0.0"
-
-is-fullwidth-code-point@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
- integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
-
-is-fullwidth-code-point@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
- integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
-
-is-function@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08"
- integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==
-
-is-generator-fn@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
- integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
-
-is-glob@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
- integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=
- dependencies:
- is-extglob "^1.0.0"
-
-is-glob@^3.0.0, is-glob@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
- integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
- dependencies:
- is-extglob "^2.1.0"
-
-is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
- integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
- dependencies:
- is-extglob "^2.1.1"
-
-is-hexadecimal@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7"
- integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
-
-is-in-browser@^1.0.2, is-in-browser@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835"
- integrity sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=
-
-is-map@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127"
- integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==
-
-is-module@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
- integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=
-
-is-negative-zero@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
- integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
-
-is-number-object@^1.0.4:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0"
- integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==
- dependencies:
- has-tostringtag "^1.0.0"
-
-is-number@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
- integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
- dependencies:
- kind-of "^3.0.2"
-
-is-number@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
- integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
-
-is-obj@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
- integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
-
-is-obj@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
- integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
-
-is-object@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.2.tgz#a56552e1c665c9e950b4a025461da87e72f86fcf"
- integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==
-
-is-path-cwd@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
- integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
-
-is-path-in-cwd@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb"
- integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==
- dependencies:
- is-path-inside "^2.1.0"
-
-is-path-inside@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2"
- integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==
- dependencies:
- path-is-inside "^1.0.2"
-
-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-obj@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
- integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
-
-is-plain-object@3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.1.tgz#662d92d24c0aa4302407b0d45d21f2251c85f85b"
- integrity sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==
-
-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"
- integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
- dependencies:
- isobject "^3.0.1"
-
-is-potential-custom-element-name@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
- integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
-
-is-regex@^1.0.4, is-regex@^1.1.2, is-regex@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
- integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
- dependencies:
- call-bind "^1.0.2"
- has-tostringtag "^1.0.0"
-
-is-regexp@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
- integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
-
-is-resolvable@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
- integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
-
-is-root@2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
- integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
-
-is-set@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec"
- integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==
-
-is-stream@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
- integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
-
-is-stream@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
- integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
-
-is-string@^1.0.5, is-string@^1.0.7:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
- integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
- dependencies:
- has-tostringtag "^1.0.0"
-
-is-symbol@^1.0.2, is-symbol@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
- integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
- dependencies:
- has-symbols "^1.0.2"
-
-is-typedarray@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
- integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
-
-is-whitespace-character@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7"
- integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==
-
-is-window@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d"
- integrity sha1-LIlspT25feRdPDMTOmXYyfVjSA0=
-
-is-windows@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
- integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
-
-is-word-character@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230"
- integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==
-
-is-wsl@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
- integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
-
-is-wsl@^2.1.1, is-wsl@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
- integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
- dependencies:
- is-docker "^2.0.0"
-
-isarray@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
- integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=
-
-isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
- integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
-
-isarray@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
- integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
-
-isexe@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
- integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
-
-isobject@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
- integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
- dependencies:
- isarray "1.0.0"
-
-isobject@^3.0.0, isobject@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
- integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
-
-isobject@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0"
- integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==
-
-istanbul-lib-coverage@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
- integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
-
-istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
- integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
- dependencies:
- "@babel/core" "^7.7.5"
- "@istanbuljs/schema" "^0.1.2"
- istanbul-lib-coverage "^3.0.0"
- semver "^6.3.0"
-
-istanbul-lib-report@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
- integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
- dependencies:
- istanbul-lib-coverage "^3.0.0"
- make-dir "^3.0.0"
- supports-color "^7.1.0"
-
-istanbul-lib-source-maps@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9"
- integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
- dependencies:
- debug "^4.1.1"
- istanbul-lib-coverage "^3.0.0"
- source-map "^0.6.1"
-
-istanbul-reports@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
- integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
- dependencies:
- html-escaper "^2.0.0"
- istanbul-lib-report "^3.0.0"
-
-iterate-iterator@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/iterate-iterator/-/iterate-iterator-1.0.1.tgz#1693a768c1ddd79c969051459453f082fe82e9f6"
- integrity sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw==
-
-iterate-value@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/iterate-value/-/iterate-value-1.0.2.tgz#935115bd37d006a52046535ebc8d07e9c9337f57"
- integrity sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==
- dependencies:
- es-get-iterator "^1.0.2"
- iterate-iterator "^1.0.1"
-
-jest-changed-files@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.6.2.tgz#f6198479e1cc66f22f9ae1e22acaa0b429c042d0"
- integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==
- dependencies:
- "@jest/types" "^26.6.2"
- execa "^4.0.0"
- throat "^5.0.0"
-
-jest-circus@26.6.0:
- version "26.6.0"
- resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-26.6.0.tgz#7d9647b2e7f921181869faae1f90a2629fd70705"
- integrity sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==
- dependencies:
- "@babel/traverse" "^7.1.0"
- "@jest/environment" "^26.6.0"
- "@jest/test-result" "^26.6.0"
- "@jest/types" "^26.6.0"
- "@types/babel__traverse" "^7.0.4"
- "@types/node" "*"
- chalk "^4.0.0"
- co "^4.6.0"
- dedent "^0.7.0"
- expect "^26.6.0"
- is-generator-fn "^2.0.0"
- jest-each "^26.6.0"
- jest-matcher-utils "^26.6.0"
- jest-message-util "^26.6.0"
- jest-runner "^26.6.0"
- jest-runtime "^26.6.0"
- jest-snapshot "^26.6.0"
- jest-util "^26.6.0"
- pretty-format "^26.6.0"
- stack-utils "^2.0.2"
- throat "^5.0.0"
-
-jest-cli@^26.6.0:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.6.3.tgz#43117cfef24bc4cd691a174a8796a532e135e92a"
- integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==
- dependencies:
- "@jest/core" "^26.6.3"
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
- chalk "^4.0.0"
- exit "^0.1.2"
- graceful-fs "^4.2.4"
- import-local "^3.0.2"
- is-ci "^2.0.0"
- jest-config "^26.6.3"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- prompts "^2.0.1"
- yargs "^15.4.1"
-
-jest-config@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.6.3.tgz#64f41444eef9eb03dc51d5c53b75c8c71f645349"
- integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==
- dependencies:
- "@babel/core" "^7.1.0"
- "@jest/test-sequencer" "^26.6.3"
- "@jest/types" "^26.6.2"
- babel-jest "^26.6.3"
- chalk "^4.0.0"
- deepmerge "^4.2.2"
- glob "^7.1.1"
- graceful-fs "^4.2.4"
- jest-environment-jsdom "^26.6.2"
- jest-environment-node "^26.6.2"
- jest-get-type "^26.3.0"
- jest-jasmine2 "^26.6.3"
- jest-regex-util "^26.0.0"
- jest-resolve "^26.6.2"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- micromatch "^4.0.2"
- pretty-format "^26.6.2"
-
-jest-diff@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394"
- integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==
- dependencies:
- chalk "^4.0.0"
- diff-sequences "^26.6.2"
- jest-get-type "^26.3.0"
- pretty-format "^26.6.2"
-
-jest-diff@^27.0.0:
- version "27.1.1"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.1.1.tgz#1d1629ca2e3933b10cb27dc260e28e3dba182684"
- integrity sha512-m/6n5158rqEriTazqHtBpOa2B/gGgXJijX6nsEgZfbJ/3pxQcdpVXBe+FP39b1dxWHyLVVmuVXddmAwtqFO4Lg==
- dependencies:
- chalk "^4.0.0"
- diff-sequences "^27.0.6"
- jest-get-type "^27.0.6"
- pretty-format "^27.1.1"
-
-jest-docblock@^26.0.0:
- version "26.0.0"
- resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5"
- integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==
- dependencies:
- detect-newline "^3.0.0"
-
-jest-each@^26.6.0, jest-each@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.6.2.tgz#02526438a77a67401c8a6382dfe5999952c167cb"
- integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==
- dependencies:
- "@jest/types" "^26.6.2"
- chalk "^4.0.0"
- jest-get-type "^26.3.0"
- jest-util "^26.6.2"
- pretty-format "^26.6.2"
-
-jest-environment-jsdom@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz#78d09fe9cf019a357009b9b7e1f101d23bd1da3e"
- integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==
- dependencies:
- "@jest/environment" "^26.6.2"
- "@jest/fake-timers" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- jest-mock "^26.6.2"
- jest-util "^26.6.2"
- jsdom "^16.4.0"
-
-jest-environment-node@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.6.2.tgz#824e4c7fb4944646356f11ac75b229b0035f2b0c"
- integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==
- dependencies:
- "@jest/environment" "^26.6.2"
- "@jest/fake-timers" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- jest-mock "^26.6.2"
- jest-util "^26.6.2"
-
-jest-get-type@^26.3.0:
- version "26.3.0"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0"
- integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==
-
-jest-get-type@^27.0.6:
- version "27.0.6"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.0.6.tgz#0eb5c7f755854279ce9b68a9f1a4122f69047cfe"
- integrity sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==
-
-jest-haste-map@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa"
- integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==
- dependencies:
- "@jest/types" "^26.6.2"
- "@types/graceful-fs" "^4.1.2"
- "@types/node" "*"
- anymatch "^3.0.3"
- fb-watchman "^2.0.0"
- graceful-fs "^4.2.4"
- jest-regex-util "^26.0.0"
- jest-serializer "^26.6.2"
- jest-util "^26.6.2"
- jest-worker "^26.6.2"
- micromatch "^4.0.2"
- sane "^4.0.3"
- walker "^1.0.7"
- optionalDependencies:
- fsevents "^2.1.2"
-
-jest-jasmine2@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz#adc3cf915deacb5212c93b9f3547cd12958f2edd"
- integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==
- dependencies:
- "@babel/traverse" "^7.1.0"
- "@jest/environment" "^26.6.2"
- "@jest/source-map" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- chalk "^4.0.0"
- co "^4.6.0"
- expect "^26.6.2"
- is-generator-fn "^2.0.0"
- jest-each "^26.6.2"
- jest-matcher-utils "^26.6.2"
- jest-message-util "^26.6.2"
- jest-runtime "^26.6.3"
- jest-snapshot "^26.6.2"
- jest-util "^26.6.2"
- pretty-format "^26.6.2"
- throat "^5.0.0"
-
-jest-leak-detector@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz#7717cf118b92238f2eba65054c8a0c9c653a91af"
- integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==
- dependencies:
- jest-get-type "^26.3.0"
- pretty-format "^26.6.2"
-
-jest-matcher-utils@^26.6.0, jest-matcher-utils@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz#8e6fd6e863c8b2d31ac6472eeb237bc595e53e7a"
- integrity sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==
- dependencies:
- chalk "^4.0.0"
- jest-diff "^26.6.2"
- jest-get-type "^26.3.0"
- pretty-format "^26.6.2"
-
-jest-message-util@^26.6.0, jest-message-util@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.6.2.tgz#58173744ad6fc0506b5d21150b9be56ef001ca07"
- integrity sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- "@jest/types" "^26.6.2"
- "@types/stack-utils" "^2.0.0"
- chalk "^4.0.0"
- graceful-fs "^4.2.4"
- micromatch "^4.0.2"
- pretty-format "^26.6.2"
- slash "^3.0.0"
- stack-utils "^2.0.2"
-
-jest-mock@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.6.2.tgz#d6cb712b041ed47fe0d9b6fc3474bc6543feb302"
- integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==
- dependencies:
- "@jest/types" "^26.6.2"
- "@types/node" "*"
-
-jest-pnp-resolver@^1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
- integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
-
-jest-regex-util@^26.0.0:
- version "26.0.0"
- resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28"
- integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
-
-jest-resolve-dependencies@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz#6680859ee5d22ee5dcd961fe4871f59f4c784fb6"
- integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==
- dependencies:
- "@jest/types" "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-snapshot "^26.6.2"
-
-jest-resolve@26.6.0:
- version "26.6.0"
- resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.6.0.tgz#070fe7159af87b03e50f52ea5e17ee95bbee40e1"
- integrity sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==
- dependencies:
- "@jest/types" "^26.6.0"
- chalk "^4.0.0"
- graceful-fs "^4.2.4"
- jest-pnp-resolver "^1.2.2"
- jest-util "^26.6.0"
- read-pkg-up "^7.0.1"
- resolve "^1.17.0"
- slash "^3.0.0"
-
-jest-resolve@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.6.2.tgz#a3ab1517217f469b504f1b56603c5bb541fbb507"
- integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==
- dependencies:
- "@jest/types" "^26.6.2"
- chalk "^4.0.0"
- graceful-fs "^4.2.4"
- jest-pnp-resolver "^1.2.2"
- jest-util "^26.6.2"
- read-pkg-up "^7.0.1"
- resolve "^1.18.1"
- slash "^3.0.0"
-
-jest-runner@^26.6.0, jest-runner@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.6.3.tgz#2d1fed3d46e10f233fd1dbd3bfaa3fe8924be159"
- integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==
- dependencies:
- "@jest/console" "^26.6.2"
- "@jest/environment" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- chalk "^4.0.0"
- emittery "^0.7.1"
- exit "^0.1.2"
- graceful-fs "^4.2.4"
- jest-config "^26.6.3"
- jest-docblock "^26.0.0"
- jest-haste-map "^26.6.2"
- jest-leak-detector "^26.6.2"
- jest-message-util "^26.6.2"
- jest-resolve "^26.6.2"
- jest-runtime "^26.6.3"
- jest-util "^26.6.2"
- jest-worker "^26.6.2"
- source-map-support "^0.5.6"
- throat "^5.0.0"
-
-jest-runtime@^26.6.0, jest-runtime@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.6.3.tgz#4f64efbcfac398331b74b4b3c82d27d401b8fa2b"
- integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==
- dependencies:
- "@jest/console" "^26.6.2"
- "@jest/environment" "^26.6.2"
- "@jest/fake-timers" "^26.6.2"
- "@jest/globals" "^26.6.2"
- "@jest/source-map" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/yargs" "^15.0.0"
- chalk "^4.0.0"
- cjs-module-lexer "^0.6.0"
- collect-v8-coverage "^1.0.0"
- exit "^0.1.2"
- glob "^7.1.3"
- graceful-fs "^4.2.4"
- jest-config "^26.6.3"
- jest-haste-map "^26.6.2"
- jest-message-util "^26.6.2"
- jest-mock "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-resolve "^26.6.2"
- jest-snapshot "^26.6.2"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- slash "^3.0.0"
- strip-bom "^4.0.0"
- yargs "^15.4.1"
-
-jest-serializer@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.6.2.tgz#d139aafd46957d3a448f3a6cdabe2919ba0742d1"
- integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==
- dependencies:
- "@types/node" "*"
- graceful-fs "^4.2.4"
-
-jest-snapshot@^26.6.0, jest-snapshot@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.6.2.tgz#f3b0af1acb223316850bd14e1beea9837fb39c84"
- integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==
- dependencies:
- "@babel/types" "^7.0.0"
- "@jest/types" "^26.6.2"
- "@types/babel__traverse" "^7.0.4"
- "@types/prettier" "^2.0.0"
- chalk "^4.0.0"
- expect "^26.6.2"
- graceful-fs "^4.2.4"
- jest-diff "^26.6.2"
- jest-get-type "^26.3.0"
- jest-haste-map "^26.6.2"
- jest-matcher-utils "^26.6.2"
- jest-message-util "^26.6.2"
- jest-resolve "^26.6.2"
- natural-compare "^1.4.0"
- pretty-format "^26.6.2"
- semver "^7.3.2"
-
-jest-util@^26.6.0, jest-util@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1"
- integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==
- dependencies:
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- chalk "^4.0.0"
- graceful-fs "^4.2.4"
- is-ci "^2.0.0"
- micromatch "^4.0.2"
-
-jest-validate@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec"
- integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==
- dependencies:
- "@jest/types" "^26.6.2"
- camelcase "^6.0.0"
- chalk "^4.0.0"
- jest-get-type "^26.3.0"
- leven "^3.1.0"
- pretty-format "^26.6.2"
-
-jest-watch-typeahead@0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz#45221b86bb6710b7e97baaa1640ae24a07785e63"
- integrity sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==
- dependencies:
- ansi-escapes "^4.3.1"
- chalk "^4.0.0"
- jest-regex-util "^26.0.0"
- jest-watcher "^26.3.0"
- slash "^3.0.0"
- string-length "^4.0.1"
- strip-ansi "^6.0.0"
-
-jest-watcher@^26.3.0, jest-watcher@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.6.2.tgz#a5b683b8f9d68dbcb1d7dae32172d2cca0592975"
- integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==
- dependencies:
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- ansi-escapes "^4.2.1"
- chalk "^4.0.0"
- jest-util "^26.6.2"
- string-length "^4.0.1"
-
-jest-worker@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5"
- integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
- dependencies:
- merge-stream "^2.0.0"
- supports-color "^6.1.0"
-
-jest-worker@^26.5.0, jest-worker@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
- integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
- dependencies:
- "@types/node" "*"
- merge-stream "^2.0.0"
- supports-color "^7.0.0"
-
-jest@26.6.0:
- version "26.6.0"
- resolved "https://registry.yarnpkg.com/jest/-/jest-26.6.0.tgz#546b25a1d8c888569dbbe93cae131748086a4a25"
- integrity sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==
- dependencies:
- "@jest/core" "^26.6.0"
- import-local "^3.0.2"
- jest-cli "^26.6.0"
-
-js-beautify@^1.8.9:
- version "1.14.0"
- resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.14.0.tgz#2ce790c555d53ce1e3d7363227acf5dc69024c2d"
- integrity sha512-yuck9KirNSCAwyNJbqW+BxJqJ0NLJ4PwBUzQQACl5O3qHMBXVkXb/rD0ilh/Lat/tn88zSZ+CAHOlk0DsY7GuQ==
- dependencies:
- config-chain "^1.1.12"
- editorconfig "^0.15.3"
- glob "^7.1.3"
- nopt "^5.0.0"
-
-js-string-escape@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef"
- integrity sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=
-
-"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-
-js-yaml@^3.13.1:
- version "3.14.1"
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
- integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
- dependencies:
- argparse "^1.0.7"
- esprima "^4.0.0"
-
-jsdom@^16.4.0:
- version "16.7.0"
- resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710"
- integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==
- dependencies:
- abab "^2.0.5"
- acorn "^8.2.4"
- acorn-globals "^6.0.0"
- cssom "^0.4.4"
- cssstyle "^2.3.0"
- data-urls "^2.0.0"
- decimal.js "^10.2.1"
- domexception "^2.0.1"
- escodegen "^2.0.0"
- form-data "^3.0.0"
- html-encoding-sniffer "^2.0.1"
- http-proxy-agent "^4.0.1"
- https-proxy-agent "^5.0.0"
- is-potential-custom-element-name "^1.0.1"
- nwsapi "^2.2.0"
- parse5 "6.0.1"
- saxes "^5.0.1"
- symbol-tree "^3.2.4"
- tough-cookie "^4.0.0"
- w3c-hr-time "^1.0.2"
- w3c-xmlserializer "^2.0.0"
- webidl-conversions "^6.1.0"
- whatwg-encoding "^1.0.5"
- whatwg-mimetype "^2.3.0"
- whatwg-url "^8.5.0"
- ws "^7.4.6"
- xml-name-validator "^3.0.0"
-
-jsesc@^2.5.1:
- version "2.5.2"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
- integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
-
-jsesc@~0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
- integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
-
-json-parse-better-errors@^1.0.1, 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"
- integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
-
-json-parse-even-better-errors@^2.3.0:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
- integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
-
-json-schema-traverse@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
- integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
-
-json-schema-traverse@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
- integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
-
-json-stable-stringify-without-jsonify@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
- integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
-
-json3@^3.3.3:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"
- integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==
-
-json5@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
- integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
- dependencies:
- minimist "^1.2.0"
-
-json5@^2.1.2, json5@^2.1.3:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
- integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
- dependencies:
- minimist "^1.2.5"
-
-jsonfile@^2.1.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
- integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jsonfile@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
- integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jsonfile@^6.0.1:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
- integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
- dependencies:
- universalify "^2.0.0"
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jss-plugin-camel-case@^10.5.1:
- version "10.7.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.7.1.tgz#e7f7097cf97e9deec599cef3275e213452318b93"
- integrity sha512-+ioIyWvmAfgDCWXsQcW1NMnLBvRinOVFkSYJUgewQ6TynOcSj5F1bSU23B7z0p1iqK0PPHIU62xY1iNJD33WGA==
- dependencies:
- "@babel/runtime" "^7.3.1"
- hyphenate-style-name "^1.0.3"
- jss "10.7.1"
-
-jss-plugin-default-unit@^10.5.1:
- version "10.7.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.7.1.tgz#826270e2ee38d7024a281ac67c30d6944f124786"
- integrity sha512-tW+dfYVNARBQb/ONzBwd8uyImigyzMiAEDai+AbH5rcHg5h3TtqhAkxx06iuZiT/dZUiFdSKlbe3q9jZGAPIwA==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.7.1"
-
-jss-plugin-global@^10.5.1:
- version "10.7.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.7.1.tgz#9725c46d662aac2e596a0a8741944c060e2b90a1"
- integrity sha512-FbxCnu44IkK/bw8X3CwZKmcAnJqjAb9LujlAc/aP0bMSdVa3/MugKQRyeQSu00uGL44feJJDoeXXiHOakBr/Zw==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.7.1"
-
-jss-plugin-nested@^10.5.1:
- version "10.7.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.7.1.tgz#35563a7a710a45307fd6b9742ffada1d72a62eb7"
- integrity sha512-RNbICk7FlYKaJyv9tkMl7s6FFfeLA3ubNIFKvPqaWtADK0KUaPsPXVYBkAu4x1ItgsWx67xvReMrkcKA0jSXfA==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.7.1"
- tiny-warning "^1.0.2"
-
-jss-plugin-props-sort@^10.5.1:
- version "10.7.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.7.1.tgz#1d12b26048541ed3a2ed1b69f7fc231605728362"
- integrity sha512-eyd5FhA+J0QrpqXxO7YNF/HMSXXl4pB0EmUdY4vSJI4QG22F59vQ6AHtP6fSwhmBdQ98Qd9gjfO+RMxcE39P1A==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.7.1"
-
-jss-plugin-rule-value-function@^10.5.1:
- version "10.7.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.7.1.tgz#123eb796eb9982f8efa7a7e362daddd90c0c69fe"
- integrity sha512-fGAAImlbaHD3fXAHI3ooX6aRESOl5iBt3LjpVjxs9II5u9tzam7pqFUmgTcrip9VpRqYHn8J3gA7kCtm8xKwHg==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.7.1"
- tiny-warning "^1.0.2"
-
-jss-plugin-vendor-prefixer@^10.5.1:
- version "10.7.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.7.1.tgz#217821be2d6dacee31d2d464886760ba7742e19a"
- integrity sha512-1UHFmBn7hZNsHXTkLLOL8abRl8vi+D1EVzWD4WmLFj55vawHZfnH1oEz6TUf5Y61XHv0smdHabdXds6BgOXe3A==
- dependencies:
- "@babel/runtime" "^7.3.1"
- css-vendor "^2.0.8"
- jss "10.7.1"
-
-jss@10.7.1, jss@^10.5.1:
- version "10.7.1"
- resolved "https://registry.yarnpkg.com/jss/-/jss-10.7.1.tgz#16d846e1a22fb42e857b99f9c6a0c5a27341c804"
- integrity sha512-5QN8JSVZR6cxpZNeGfzIjqPEP+ZJwJJfZbXmeABNdxiExyO+eJJDy6WDtqTf8SDKnbL5kZllEpAP71E/Lt7PXg==
- dependencies:
- "@babel/runtime" "^7.3.1"
- csstype "^3.0.2"
- is-in-browser "^1.1.3"
- tiny-warning "^1.0.2"
-
-"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82"
- integrity sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==
- dependencies:
- array-includes "^3.1.2"
- object.assign "^4.1.2"
-
-junk@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/junk/-/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1"
- integrity sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==
-
-killable@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892"
- integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==
-
-kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
- version "3.2.2"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
- integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
- integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
- integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
-
-kind-of@^6.0.0, kind-of@^6.0.2:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
- integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
-
-klaw@^1.0.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
- integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk=
- optionalDependencies:
- graceful-fs "^4.1.9"
-
-kleur@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
- integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
-
-klona@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0"
- integrity sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==
-
-language-subtag-registry@~0.3.2:
- version "0.3.21"
- resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
- integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
-
-language-tags@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
- integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=
- dependencies:
- language-subtag-registry "~0.3.2"
-
-last-call-webpack-plugin@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555"
- integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==
- dependencies:
- lodash "^4.17.5"
- webpack-sources "^1.1.0"
-
-lazy-universal-dotenv@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/lazy-universal-dotenv/-/lazy-universal-dotenv-3.0.1.tgz#a6c8938414bca426ab8c9463940da451a911db38"
- integrity sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==
- dependencies:
- "@babel/runtime" "^7.5.0"
- app-root-dir "^1.0.2"
- core-js "^3.0.4"
- dotenv "^8.0.0"
- dotenv-expand "^5.1.0"
-
-leaflet@^1.7.1:
- version "1.7.1"
- resolved "https://registry.yarnpkg.com/leaflet/-/leaflet-1.7.1.tgz#10d684916edfe1bf41d688a3b97127c0322a2a19"
- integrity sha512-/xwPEBidtg69Q3HlqPdU3DnrXQOvQU/CCHA1tcDQVzOwm91YMYaILjNp7L4Eaw5Z4sOYdbBz6koWyibppd8Zqw==
-
-leven@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
- integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
-
-levn@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
- integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
- dependencies:
- prelude-ls "^1.2.1"
- type-check "~0.4.0"
-
-levn@~0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
- integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
- dependencies:
- prelude-ls "~1.1.2"
- type-check "~0.3.2"
-
-lines-and-columns@^1.1.6:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
- integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
-
-load-json-file@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
- integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
- dependencies:
- graceful-fs "^4.1.2"
- parse-json "^4.0.0"
- pify "^3.0.0"
- strip-bom "^3.0.0"
-
-loader-runner@^2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
- integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
-
-loader-utils@1.2.3:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
- integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
- dependencies:
- big.js "^5.2.2"
- emojis-list "^2.0.0"
- json5 "^1.0.1"
-
-loader-utils@2.0.0, loader-utils@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
- integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
- dependencies:
- big.js "^5.2.2"
- emojis-list "^3.0.0"
- json5 "^2.1.2"
-
-loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
- integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
- dependencies:
- big.js "^5.2.2"
- emojis-list "^3.0.0"
- json5 "^1.0.1"
-
-locate-path@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
- integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
- dependencies:
- p-locate "^2.0.0"
- path-exists "^3.0.0"
-
-locate-path@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
- integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
- dependencies:
- p-locate "^3.0.0"
- path-exists "^3.0.0"
-
-locate-path@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
- integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
- dependencies:
- p-locate "^4.1.0"
-
-locate-path@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
- integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
- dependencies:
- p-locate "^5.0.0"
-
-lodash._reinterpolate@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
- integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
-
-lodash.clonedeep@^4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
- integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
-
-lodash.debounce@^4.0.8:
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
- integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
-
-lodash.memoize@^4.1.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
- integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
-
-lodash.merge@^4.6.2:
- version "4.6.2"
- resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
- integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
-
-lodash.template@^4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
- integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
- dependencies:
- lodash._reinterpolate "^3.0.0"
- lodash.templatesettings "^4.0.0"
-
-lodash.templatesettings@^4.0.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33"
- integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
- dependencies:
- lodash._reinterpolate "^3.0.0"
-
-lodash.truncate@^4.4.2:
- version "4.4.2"
- resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
- integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
-
-lodash.uniq@4.5.0, lodash.uniq@^4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
- integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
-
-"lodash@>=3.5 <5", lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.5, lodash@^4.7.0:
- version "4.17.21"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
- integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
-
-loglevel@^1.6.8:
- version "1.7.1"
- resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz#005fde2f5e6e47068f935ff28573e125ef72f197"
- integrity sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==
-
-loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
- integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
- dependencies:
- js-tokens "^3.0.0 || ^4.0.0"
-
-lower-case@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28"
- integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==
- dependencies:
- tslib "^2.0.3"
-
-lowlight@^1.14.0:
- version "1.20.0"
- resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.20.0.tgz#ddb197d33462ad0d93bf19d17b6c301aa3941888"
- integrity sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==
- dependencies:
- fault "^1.0.0"
- highlight.js "~10.7.0"
-
-lru-cache@^4.1.5:
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
- integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
- dependencies:
- pseudomap "^1.0.2"
- yallist "^2.1.2"
-
-lru-cache@^5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
- integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
- dependencies:
- yallist "^3.0.2"
-
-lru-cache@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
- integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
- dependencies:
- yallist "^4.0.0"
-
-lz-string@^1.4.4:
- version "1.4.4"
- resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26"
- integrity sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=
-
-magic-string@^0.25.0, magic-string@^0.25.7:
- version "0.25.7"
- resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051"
- integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==
- dependencies:
- sourcemap-codec "^1.4.4"
-
-make-dir@^2.0.0, make-dir@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
- integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
- dependencies:
- pify "^4.0.1"
- semver "^5.6.0"
-
-make-dir@^3.0.0, make-dir@^3.0.2:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
- integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
- dependencies:
- semver "^6.0.0"
-
-makeerror@1.0.x:
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
- integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
- dependencies:
- tmpl "1.0.x"
-
-map-cache@^0.2.2:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
- integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
-
-map-or-similar@^1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08"
- integrity sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=
-
-map-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
- integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
- dependencies:
- object-visit "^1.0.0"
-
-markdown-escapes@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535"
- integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==
-
-markdown-to-jsx@^6.11.4:
- version "6.11.4"
- resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz#b4528b1ab668aef7fe61c1535c27e837819392c5"
- integrity sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==
- dependencies:
- prop-types "^15.6.2"
- unquote "^1.1.0"
-
-markdown-to-jsx@^7.1.3:
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.1.3.tgz#f00bae66c0abe7dd2d274123f84cb6bd2a2c7c6a"
- integrity sha512-jtQ6VyT7rMT5tPV0g2EJakEnXLiPksnvlYtwQsVVZ611JsWGN8bQ1tVSDX4s6JllfEH6wmsYxNjTUAMrPmNA8w==
-
-md5.js@^1.3.4:
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
- integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
- dependencies:
- hash-base "^3.0.0"
- inherits "^2.0.1"
- safe-buffer "^5.1.2"
-
-mdast-squeeze-paragraphs@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz#7c4c114679c3bee27ef10b58e2e015be79f1ef97"
- integrity sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==
- dependencies:
- unist-util-remove "^2.0.0"
-
-mdast-util-definitions@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2"
- integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==
- dependencies:
- unist-util-visit "^2.0.0"
-
-mdast-util-to-hast@10.0.1:
- version "10.0.1"
- resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz#0cfc82089494c52d46eb0e3edb7a4eb2aea021eb"
- integrity sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==
- dependencies:
- "@types/mdast" "^3.0.0"
- "@types/unist" "^2.0.0"
- mdast-util-definitions "^4.0.0"
- mdurl "^1.0.0"
- unist-builder "^2.0.0"
- unist-util-generated "^1.0.0"
- unist-util-position "^3.0.0"
- unist-util-visit "^2.0.0"
-
-mdast-util-to-string@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527"
- integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==
-
-mdn-data@2.0.14:
- version "2.0.14"
- resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
- integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
-
-mdn-data@2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
- integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
-
-mdurl@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
- integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=
-
-media-typer@0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
- integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
-
-memfs@^3.1.2:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.2.4.tgz#1108c28d2e9137daf5a5586af856c3e18c1c64b2"
- integrity sha512-2mDCPhuduRPOxlfgsXF9V+uqC6Jgz8zt/bNe4d4W7d5f6pCzHrWkxLNr17jKGXd4+j2kQNsAG2HARPnt74sqVQ==
- dependencies:
- fs-monkey "1.0.3"
-
-memoizerific@^1.11.3:
- version "1.11.3"
- resolved "https://registry.yarnpkg.com/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a"
- integrity sha1-fIekZGREwy11Q4VwkF8tvRsagFo=
- dependencies:
- map-or-similar "^1.5.0"
-
-memory-fs@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
- integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
- dependencies:
- errno "^0.1.3"
- readable-stream "^2.0.1"
-
-memory-fs@^0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
- integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
- dependencies:
- errno "^0.1.3"
- readable-stream "^2.0.1"
-
-merge-descriptors@1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
- integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
-
-merge-stream@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
- integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
-
-merge2@^1.2.3, merge2@^1.3.0:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
- integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
-
-methods@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
- integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
-
-microevent.ts@~0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0"
- integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
-
-micromatch@^3.1.10, micromatch@^3.1.4:
- version "3.1.10"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
- integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- braces "^2.3.1"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- extglob "^2.0.4"
- fragment-cache "^0.2.1"
- kind-of "^6.0.2"
- nanomatch "^1.2.9"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.2"
-
-micromatch@^4.0.2, micromatch@^4.0.4:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
- integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
- dependencies:
- braces "^3.0.1"
- picomatch "^2.2.3"
-
-miller-rabin@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
- integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
- dependencies:
- bn.js "^4.0.0"
- brorand "^1.0.1"
-
-mime-db@1.49.0, "mime-db@>= 1.43.0 < 2":
- version "1.49.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz#f3dfde60c99e9cf3bc9701d687778f537001cbed"
- integrity sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==
-
-mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.17, mime-types@~2.1.24:
- version "2.1.32"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz#1d00e89e7de7fe02008db61001d9e02852670fd5"
- integrity sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==
- dependencies:
- mime-db "1.49.0"
-
-mime@1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
- integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
-
-mime@^2.4.4:
- version "2.5.2"
- resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe"
- integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==
-
-mimic-fn@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
- integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
-
-min-document@^2.19.0:
- version "2.19.0"
- resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
- integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=
- dependencies:
- dom-walk "^0.1.0"
-
-min-indent@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
- integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
-
-mini-create-react-context@^0.4.0:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz#072171561bfdc922da08a60c2197a497cc2d1d5e"
- integrity sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==
- dependencies:
- "@babel/runtime" "^7.12.1"
- tiny-warning "^1.0.3"
-
-mini-css-extract-plugin@0.11.3:
- version "0.11.3"
- resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz#15b0910a7f32e62ffde4a7430cfefbd700724ea6"
- integrity sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==
- dependencies:
- loader-utils "^1.1.0"
- normalize-url "1.9.1"
- schema-utils "^1.0.0"
- webpack-sources "^1.1.0"
-
-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"
- integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
-
-minimalistic-crypto-utils@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
- integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
-
-minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
- integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
- dependencies:
- brace-expansion "^1.1.7"
-
-minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5:
- version "1.2.5"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
- integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
-
-minipass-collect@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
- integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
- dependencies:
- minipass "^3.0.0"
-
-minipass-flush@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
- integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
- dependencies:
- minipass "^3.0.0"
-
-minipass-pipeline@^1.2.2:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
- integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
- dependencies:
- minipass "^3.0.0"
-
-minipass@^3.0.0, minipass@^3.1.1:
- version "3.1.3"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd"
- integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==
- dependencies:
- yallist "^4.0.0"
-
-minizlib@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
- integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
- dependencies:
- minipass "^3.0.0"
- yallist "^4.0.0"
-
-mississippi@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
- integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
- dependencies:
- concat-stream "^1.5.0"
- duplexify "^3.4.2"
- end-of-stream "^1.1.0"
- flush-write-stream "^1.0.0"
- from2 "^2.1.0"
- parallel-transform "^1.1.0"
- pump "^3.0.0"
- pumpify "^1.3.3"
- stream-each "^1.1.0"
- through2 "^2.0.0"
-
-mixin-deep@^1.2.0:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
- integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
- dependencies:
- for-in "^1.0.2"
- is-extendable "^1.0.1"
-
-mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5, mkdirp@~0.5.1:
- version "0.5.5"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
- integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
- dependencies:
- minimist "^1.2.5"
-
-mkdirp@^1.0.3, mkdirp@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
- integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
-
-move-concurrently@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
- integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
- dependencies:
- aproba "^1.1.1"
- copy-concurrently "^1.0.0"
- fs-write-stream-atomic "^1.0.8"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
- run-queue "^1.0.3"
-
-ms@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
- integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
-
-ms@2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
- integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
-
-ms@2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
- integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-
-ms@^2.1.1:
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
- integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
-
-multicast-dns-service-types@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901"
- integrity sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=
-
-multicast-dns@^6.0.1:
- version "6.2.3"
- resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229"
- integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==
- dependencies:
- dns-packet "^1.3.1"
- thunky "^1.0.2"
-
-nan@^2.12.1:
- version "2.15.0"
- resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee"
- integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==
-
-nanoid@^3.1.23:
- version "3.1.25"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.25.tgz#09ca32747c0e543f0e1814b7d3793477f9c8e152"
- integrity sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==
-
-nanomatch@^1.2.9:
- version "1.2.13"
- resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
- integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- fragment-cache "^0.2.1"
- is-windows "^1.0.2"
- kind-of "^6.0.2"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-native-url@^0.2.6:
- version "0.2.6"
- resolved "https://registry.yarnpkg.com/native-url/-/native-url-0.2.6.tgz#ca1258f5ace169c716ff44eccbddb674e10399ae"
- integrity sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==
- dependencies:
- querystring "^0.2.0"
-
-natural-compare@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
- integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
-
-negotiator@0.6.2:
- version "0.6.2"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
- integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
-
-neo-async@^2.5.0, neo-async@^2.6.1, neo-async@^2.6.2:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
- integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
-
-nested-error-stacks@^2.0.0, nested-error-stacks@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz#0fbdcf3e13fe4994781280524f8b96b0cdff9c61"
- integrity sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==
-
-next-tick@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c"
- integrity sha1-yobR/ogoFpsBICCOPchCS524NCw=
-
-nice-try@^1.0.4:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
- integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
-
-no-case@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d"
- integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==
- dependencies:
- lower-case "^2.0.2"
- tslib "^2.0.3"
-
-node-dir@^0.1.10:
- version "0.1.17"
- resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5"
- integrity sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=
- dependencies:
- minimatch "^3.0.2"
-
-node-fetch@^2.6.1:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.2.tgz#986996818b73785e47b1965cc34eb093a1d464d0"
- integrity sha512-aLoxToI6RfZ+0NOjmWAgn9+LEd30YCkJKFSyWacNZdEKTit/ZMcKjGkTRo8uWEsnIb/hfKecNPEbln02PdWbcA==
-
-node-forge@^0.10.0:
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3"
- integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
-
-node-int64@^0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
- integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
-
-node-libs-browser@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
- integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
- dependencies:
- assert "^1.1.1"
- browserify-zlib "^0.2.0"
- buffer "^4.3.0"
- console-browserify "^1.1.0"
- constants-browserify "^1.0.0"
- crypto-browserify "^3.11.0"
- domain-browser "^1.1.1"
- events "^3.0.0"
- https-browserify "^1.0.0"
- os-browserify "^0.3.0"
- path-browserify "0.0.1"
- process "^0.11.10"
- punycode "^1.2.4"
- querystring-es3 "^0.2.0"
- readable-stream "^2.3.3"
- stream-browserify "^2.0.1"
- stream-http "^2.7.2"
- string_decoder "^1.0.0"
- timers-browserify "^2.0.4"
- tty-browserify "0.0.0"
- url "^0.11.0"
- util "^0.11.0"
- vm-browserify "^1.0.1"
-
-node-modules-regexp@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
- integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
-
-node-notifier@^8.0.0:
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz#f3167a38ef0d2c8a866a83e318c1ba0efeb702c5"
- integrity sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==
- dependencies:
- growly "^1.3.0"
- is-wsl "^2.2.0"
- semver "^7.3.2"
- shellwords "^0.1.1"
- uuid "^8.3.0"
- which "^2.0.2"
-
-node-releases@^1.1.61, node-releases@^1.1.75:
- version "1.1.75"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.75.tgz#6dd8c876b9897a1b8e5a02de26afa79bb54ebbfe"
- integrity sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==
-
-nopt@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88"
- integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==
- dependencies:
- abbrev "1"
-
-normalize-package-data@^2.3.2, normalize-package-data@^2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
- integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
- dependencies:
- hosted-git-info "^2.1.4"
- resolve "^1.10.0"
- semver "2 || 3 || 4 || 5"
- validate-npm-package-license "^3.0.1"
-
-normalize-path@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
- integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
- dependencies:
- remove-trailing-separator "^1.0.1"
-
-normalize-path@^3.0.0, normalize-path@~3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
- integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
-
-normalize-range@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
- integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
-
-normalize-url@1.9.1:
- version "1.9.1"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
- integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
- dependencies:
- object-assign "^4.0.1"
- prepend-http "^1.0.0"
- query-string "^4.1.0"
- sort-keys "^1.0.0"
-
-normalize-url@^3.0.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
- integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
-
-npm-run-path@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
- integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
- dependencies:
- path-key "^2.0.0"
-
-npm-run-path@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
- integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
- dependencies:
- path-key "^3.0.0"
-
-npmlog@^4.1.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
- integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
- dependencies:
- are-we-there-yet "~1.1.2"
- console-control-strings "~1.1.0"
- gauge "~2.7.3"
- set-blocking "~2.0.0"
-
-nth-check@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
- integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
- dependencies:
- boolbase "~1.0.0"
-
-nth-check@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125"
- integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==
- dependencies:
- boolbase "^1.0.0"
-
-num2fraction@^1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
- integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
-
-number-is-nan@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
- integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
-
-nwsapi@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
- integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
-
-object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
- integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
-
-object-copy@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
- integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
- dependencies:
- copy-descriptor "^0.1.0"
- define-property "^0.2.5"
- kind-of "^3.0.3"
-
-object-inspect@^1.11.0, object-inspect@^1.9.0:
- version "1.11.0"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1"
- integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==
-
-object-is@^1.0.1:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
- integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
-
-object-keys@^1.0.12, object-keys@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
- integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-
-object-visit@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
- integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
- dependencies:
- isobject "^3.0.0"
-
-object.assign@^4.1.0, object.assign@^4.1.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
- integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
- dependencies:
- call-bind "^1.0.0"
- define-properties "^1.1.3"
- has-symbols "^1.0.1"
- object-keys "^1.1.1"
-
-object.entries@^1.1.0, object.entries@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd"
- integrity sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.2"
-
-"object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8"
- integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.2"
- has "^1.0.3"
-
-object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0, object.getownpropertydescriptors@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz#1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7"
- integrity sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.2"
-
-object.pick@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
- integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
- dependencies:
- isobject "^3.0.1"
-
-object.values@^1.1.0, object.values@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30"
- integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.2"
-
-objectorarray@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/objectorarray/-/objectorarray-1.0.5.tgz#2c05248bbefabd8f43ad13b41085951aac5e68a5"
- integrity sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==
-
-obuf@^1.0.0, obuf@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
- integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
-
-on-finished@~2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
- integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
- dependencies:
- ee-first "1.1.1"
-
-on-headers@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
- integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
-
-once@^1.3.0, once@^1.3.1, once@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
- integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
- dependencies:
- wrappy "1"
-
-onetime@^5.1.0:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
- integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
- dependencies:
- mimic-fn "^2.1.0"
-
-open@^7.0.2, open@^7.0.3:
- version "7.4.2"
- resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321"
- integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==
- dependencies:
- is-docker "^2.0.0"
- is-wsl "^2.1.1"
-
-opn@^5.5.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc"
- integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==
- dependencies:
- is-wsl "^1.1.0"
-
-optimize-css-assets-webpack-plugin@5.0.4:
- version "5.0.4"
- resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz#85883c6528aaa02e30bbad9908c92926bb52dc90"
- integrity sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==
- dependencies:
- cssnano "^4.1.10"
- last-call-webpack-plugin "^3.0.0"
-
-optionator@^0.8.1:
- version "0.8.3"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
- integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
- dependencies:
- deep-is "~0.1.3"
- fast-levenshtein "~2.0.6"
- levn "~0.3.0"
- prelude-ls "~1.1.2"
- type-check "~0.3.2"
- word-wrap "~1.2.3"
-
-optionator@^0.9.1:
- version "0.9.1"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
- integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
- dependencies:
- deep-is "^0.1.3"
- fast-levenshtein "^2.0.6"
- levn "^0.4.1"
- prelude-ls "^1.2.1"
- type-check "^0.4.0"
- word-wrap "^1.2.3"
-
-original@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f"
- integrity sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==
- dependencies:
- url-parse "^1.4.3"
-
-os-browserify@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
- integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
-
-overlayscrollbars@^1.13.1:
- version "1.13.1"
- resolved "https://registry.yarnpkg.com/overlayscrollbars/-/overlayscrollbars-1.13.1.tgz#0b840a88737f43a946b9d87875a2f9e421d0338a"
- integrity sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==
-
-p-all@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-all/-/p-all-2.1.0.tgz#91419be56b7dee8fe4c5db875d55e0da084244a0"
- integrity sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==
- dependencies:
- p-map "^2.0.0"
-
-p-each-series@^2.1.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a"
- integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==
-
-p-event@^4.1.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/p-event/-/p-event-4.2.0.tgz#af4b049c8acd91ae81083ebd1e6f5cae2044c1b5"
- integrity sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==
- dependencies:
- p-timeout "^3.1.0"
-
-p-filter@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c"
- integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==
- dependencies:
- p-map "^2.0.0"
-
-p-finally@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
- integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
-
-p-limit@^1.1.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
- integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
- dependencies:
- p-try "^1.0.0"
-
-p-limit@^2.0.0, p-limit@^2.2.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
- integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
- dependencies:
- p-try "^2.0.0"
-
-p-limit@^3.0.2, p-limit@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
- integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
- dependencies:
- yocto-queue "^0.1.0"
-
-p-locate@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
- integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
- dependencies:
- p-limit "^1.1.0"
-
-p-locate@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
- integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
- dependencies:
- p-limit "^2.0.0"
-
-p-locate@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
- integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
- dependencies:
- p-limit "^2.2.0"
-
-p-locate@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
- integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
- dependencies:
- p-limit "^3.0.2"
-
-p-map@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
- integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
-
-p-map@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d"
- integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==
- dependencies:
- aggregate-error "^3.0.0"
-
-p-map@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
- integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
- dependencies:
- aggregate-error "^3.0.0"
-
-p-retry@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328"
- integrity sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==
- dependencies:
- retry "^0.12.0"
-
-p-timeout@^3.1.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe"
- integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
- dependencies:
- p-finally "^1.0.0"
-
-p-try@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
- integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
-
-p-try@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
- integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-
-pako@~1.0.5:
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
- integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
-
-parallel-transform@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
- integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
- dependencies:
- cyclist "^1.0.1"
- inherits "^2.0.3"
- readable-stream "^2.1.5"
-
-param-case@^3.0.3:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
- integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
- dependencies:
- dot-case "^3.0.4"
- tslib "^2.0.3"
-
-parent-module@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
- integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
- dependencies:
- callsites "^3.0.0"
-
-parse-asn1@^5.0.0, parse-asn1@^5.1.5:
- version "5.1.6"
- resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
- integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
- dependencies:
- asn1.js "^5.2.0"
- browserify-aes "^1.0.0"
- evp_bytestokey "^1.0.0"
- pbkdf2 "^3.0.3"
- safe-buffer "^5.1.1"
-
-parse-entities@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8"
- integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==
- dependencies:
- character-entities "^1.0.0"
- character-entities-legacy "^1.0.0"
- character-reference-invalid "^1.0.0"
- is-alphanumerical "^1.0.0"
- is-decimal "^1.0.0"
- is-hexadecimal "^1.0.0"
-
-parse-json@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
- integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
- dependencies:
- error-ex "^1.3.1"
- json-parse-better-errors "^1.0.1"
-
-parse-json@^5.0.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
- integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- error-ex "^1.3.1"
- json-parse-even-better-errors "^2.3.0"
- lines-and-columns "^1.1.6"
-
-parse5@6.0.1, parse5@^6.0.0:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
- integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
-
-parseurl@~1.3.2, parseurl@~1.3.3:
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
- integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
-
-pascal-case@^3.1.2:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb"
- integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==
- dependencies:
- no-case "^3.0.4"
- tslib "^2.0.3"
-
-pascalcase@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
- integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
-
-path-browserify@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
- integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
-
-path-dirname@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
- integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
-
-path-exists@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
- integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
-
-path-exists@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
- integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
-
-path-is-absolute@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
- integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
-
-path-is-inside@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
- integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
-
-path-key@^2.0.0, path-key@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
- integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
-
-path-key@^3.0.0, path-key@^3.1.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
- integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
-
-path-parse@^1.0.6:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
- integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
-
-path-to-regexp@0.1.7:
- version "0.1.7"
- resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
- integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
-
-path-to-regexp@^1.7.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a"
- integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==
- dependencies:
- isarray "0.0.1"
-
-path-type@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
- integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
- dependencies:
- pify "^3.0.0"
-
-path-type@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
- integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
-
-pbkdf2@^3.0.3:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075"
- integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==
- dependencies:
- create-hash "^1.1.2"
- create-hmac "^1.1.4"
- ripemd160 "^2.0.1"
- safe-buffer "^5.0.1"
- sha.js "^2.4.8"
-
-performance-now@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
- integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
-
-picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
- integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
-
-pify@^2.0.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
- integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
-
-pify@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
- integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
-
-pify@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
- integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
-
-pinkie-promise@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
- integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o=
- dependencies:
- pinkie "^2.0.0"
-
-pinkie@^2.0.0:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
- integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
-
-pirates@^4.0.0, pirates@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
- integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
- dependencies:
- node-modules-regexp "^1.0.0"
-
-pkg-dir@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
- integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
- dependencies:
- find-up "^2.1.0"
-
-pkg-dir@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
- integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
- dependencies:
- find-up "^3.0.0"
-
-pkg-dir@^4.1.0, pkg-dir@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
- integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
- dependencies:
- find-up "^4.0.0"
-
-pkg-dir@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760"
- integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==
- dependencies:
- find-up "^5.0.0"
-
-pkg-up@3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
- integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
- dependencies:
- find-up "^3.0.0"
-
-pkg-up@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
- integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
- dependencies:
- find-up "^2.1.0"
-
-pnp-webpack-plugin@1.6.4:
- version "1.6.4"
- resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149"
- integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==
- dependencies:
- ts-pnp "^1.1.6"
-
-pnp-webpack-plugin@^1.6.4:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz#65741384f6d8056f36e2255a8d67ffc20866f5c9"
- integrity sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==
- dependencies:
- ts-pnp "^1.1.6"
-
-polished@^4.0.5:
- version "4.1.3"
- resolved "https://registry.yarnpkg.com/polished/-/polished-4.1.3.tgz#7a3abf2972364e7d97770b827eec9a9e64002cfc"
- integrity sha512-ocPAcVBUOryJEKe0z2KLd1l9EBa1r5mSwlKpExmrLzsnIzJo4axsoU9O2BjOTkDGDT4mZ0WFE5XKTlR3nLnZOA==
- dependencies:
- "@babel/runtime" "^7.14.0"
-
-popper.js@1.16.1-lts:
- version "1.16.1-lts"
- resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1-lts.tgz#cf6847b807da3799d80ee3d6d2f90df8a3f50b05"
- integrity sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==
-
-portfinder@^1.0.26:
- version "1.0.28"
- resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778"
- integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==
- dependencies:
- async "^2.6.2"
- debug "^3.1.1"
- mkdirp "^0.5.5"
-
-posix-character-classes@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
- integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
-
-postcss-attribute-case-insensitive@^4.0.1:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz#d93e46b504589e94ac7277b0463226c68041a880"
- integrity sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==
- dependencies:
- postcss "^7.0.2"
- postcss-selector-parser "^6.0.2"
-
-postcss-browser-comments@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz#1248d2d935fb72053c8e1f61a84a57292d9f65e9"
- integrity sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==
- dependencies:
- postcss "^7"
-
-postcss-calc@^7.0.1:
- version "7.0.5"
- resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.5.tgz#f8a6e99f12e619c2ebc23cf6c486fdc15860933e"
- integrity sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==
- dependencies:
- postcss "^7.0.27"
- postcss-selector-parser "^6.0.2"
- postcss-value-parser "^4.0.2"
-
-postcss-color-functional-notation@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz#5efd37a88fbabeb00a2966d1e53d98ced93f74e0"
- integrity sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-color-gray@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz#532a31eb909f8da898ceffe296fdc1f864be8547"
- integrity sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==
- dependencies:
- "@csstools/convert-colors" "^1.4.0"
- postcss "^7.0.5"
- postcss-values-parser "^2.0.0"
-
-postcss-color-hex-alpha@^5.0.3:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz#a8d9ca4c39d497c9661e374b9c51899ef0f87388"
- integrity sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==
- dependencies:
- postcss "^7.0.14"
- postcss-values-parser "^2.0.1"
-
-postcss-color-mod-function@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz#816ba145ac11cc3cb6baa905a75a49f903e4d31d"
- integrity sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==
- dependencies:
- "@csstools/convert-colors" "^1.4.0"
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-color-rebeccapurple@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz#c7a89be872bb74e45b1e3022bfe5748823e6de77"
- integrity sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-colormin@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381"
- integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==
- dependencies:
- browserslist "^4.0.0"
- color "^3.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-convert-values@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f"
- integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==
- dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-custom-media@^7.0.8:
- version "7.0.8"
- resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz#fffd13ffeffad73621be5f387076a28b00294e0c"
- integrity sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==
- dependencies:
- postcss "^7.0.14"
-
-postcss-custom-properties@^8.0.11:
- version "8.0.11"
- resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz#2d61772d6e92f22f5e0d52602df8fae46fa30d97"
- integrity sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==
- dependencies:
- postcss "^7.0.17"
- postcss-values-parser "^2.0.1"
-
-postcss-custom-selectors@^5.1.2:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz#64858c6eb2ecff2fb41d0b28c9dd7b3db4de7fba"
- integrity sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==
- dependencies:
- postcss "^7.0.2"
- postcss-selector-parser "^5.0.0-rc.3"
-
-postcss-dir-pseudo-class@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz#6e3a4177d0edb3abcc85fdb6fbb1c26dabaeaba2"
- integrity sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==
- dependencies:
- postcss "^7.0.2"
- postcss-selector-parser "^5.0.0-rc.3"
-
-postcss-discard-comments@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033"
- integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==
- dependencies:
- postcss "^7.0.0"
-
-postcss-discard-duplicates@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb"
- integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==
- dependencies:
- postcss "^7.0.0"
-
-postcss-discard-empty@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765"
- integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==
- dependencies:
- postcss "^7.0.0"
-
-postcss-discard-overridden@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57"
- integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==
- dependencies:
- postcss "^7.0.0"
-
-postcss-double-position-gradients@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz#fc927d52fddc896cb3a2812ebc5df147e110522e"
- integrity sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==
- dependencies:
- postcss "^7.0.5"
- postcss-values-parser "^2.0.0"
-
-postcss-env-function@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-2.0.2.tgz#0f3e3d3c57f094a92c2baf4b6241f0b0da5365d7"
- integrity sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-flexbugs-fixes@4.2.1, postcss-flexbugs-fixes@^4.2.1:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz#9218a65249f30897deab1033aced8578562a6690"
- integrity sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==
- dependencies:
- postcss "^7.0.26"
-
-postcss-focus-visible@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz#477d107113ade6024b14128317ade2bd1e17046e"
- integrity sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==
- dependencies:
- postcss "^7.0.2"
-
-postcss-focus-within@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz#763b8788596cee9b874c999201cdde80659ef680"
- integrity sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==
- dependencies:
- postcss "^7.0.2"
-
-postcss-font-variant@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz#42d4c0ab30894f60f98b17561eb5c0321f502641"
- integrity sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==
- dependencies:
- postcss "^7.0.2"
-
-postcss-gap-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz#431c192ab3ed96a3c3d09f2ff615960f902c1715"
- integrity sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==
- dependencies:
- postcss "^7.0.2"
-
-postcss-image-set-function@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz#28920a2f29945bed4c3198d7df6496d410d3f288"
- integrity sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-initial@^3.0.0:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-3.0.4.tgz#9d32069a10531fe2ecafa0b6ac750ee0bc7efc53"
- integrity sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==
- dependencies:
- postcss "^7.0.2"
-
-postcss-lab-function@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz#bb51a6856cd12289ab4ae20db1e3821ef13d7d2e"
- integrity sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==
- dependencies:
- "@csstools/convert-colors" "^1.4.0"
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-load-config@^2.0.0:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.2.tgz#c5ea504f2c4aef33c7359a34de3573772ad7502a"
- integrity sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==
- dependencies:
- cosmiconfig "^5.0.0"
- import-cwd "^2.0.0"
-
-postcss-loader@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d"
- integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==
- dependencies:
- loader-utils "^1.1.0"
- postcss "^7.0.0"
- postcss-load-config "^2.0.0"
- schema-utils "^1.0.0"
-
-postcss-loader@^4.2.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-4.3.0.tgz#2c4de9657cd4f07af5ab42bd60a673004da1b8cc"
- integrity sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==
- dependencies:
- cosmiconfig "^7.0.0"
- klona "^2.0.4"
- loader-utils "^2.0.0"
- schema-utils "^3.0.0"
- semver "^7.3.4"
-
-postcss-logical@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-3.0.0.tgz#2495d0f8b82e9f262725f75f9401b34e7b45d5b5"
- integrity sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==
- dependencies:
- postcss "^7.0.2"
-
-postcss-media-minmax@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz#b75bb6cbc217c8ac49433e12f22048814a4f5ed5"
- integrity sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==
- dependencies:
- postcss "^7.0.2"
-
-postcss-merge-longhand@^4.0.11:
- version "4.0.11"
- resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24"
- integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==
- dependencies:
- css-color-names "0.0.4"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
- stylehacks "^4.0.0"
-
-postcss-merge-rules@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650"
- integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==
- dependencies:
- browserslist "^4.0.0"
- caniuse-api "^3.0.0"
- cssnano-util-same-parent "^4.0.0"
- postcss "^7.0.0"
- postcss-selector-parser "^3.0.0"
- vendors "^1.0.0"
-
-postcss-minify-font-values@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6"
- integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==
- dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-minify-gradients@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471"
- integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==
- dependencies:
- cssnano-util-get-arguments "^4.0.0"
- is-color-stop "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-minify-params@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874"
- integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==
- dependencies:
- alphanum-sort "^1.0.0"
- browserslist "^4.0.0"
- cssnano-util-get-arguments "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
- uniqs "^2.0.0"
-
-postcss-minify-selectors@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8"
- integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==
- dependencies:
- alphanum-sort "^1.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-selector-parser "^3.0.0"
-
-postcss-modules-extract-imports@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
- integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
- dependencies:
- postcss "^7.0.5"
-
-postcss-modules-local-by-default@^3.0.2, postcss-modules-local-by-default@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0"
- integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==
- dependencies:
- icss-utils "^4.1.1"
- postcss "^7.0.32"
- postcss-selector-parser "^6.0.2"
- postcss-value-parser "^4.1.0"
-
-postcss-modules-scope@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee"
- integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==
- dependencies:
- postcss "^7.0.6"
- postcss-selector-parser "^6.0.0"
-
-postcss-modules-values@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10"
- integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
- dependencies:
- icss-utils "^4.0.0"
- postcss "^7.0.6"
-
-postcss-nesting@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052"
- integrity sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==
- dependencies:
- postcss "^7.0.2"
-
-postcss-normalize-charset@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4"
- integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==
- dependencies:
- postcss "^7.0.0"
-
-postcss-normalize-display-values@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a"
- integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==
- dependencies:
- cssnano-util-get-match "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-positions@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f"
- integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==
- dependencies:
- cssnano-util-get-arguments "^4.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-repeat-style@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c"
- integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==
- dependencies:
- cssnano-util-get-arguments "^4.0.0"
- cssnano-util-get-match "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-string@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c"
- integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==
- dependencies:
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-timing-functions@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9"
- integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==
- dependencies:
- cssnano-util-get-match "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-unicode@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb"
- integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==
- dependencies:
- browserslist "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-url@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1"
- integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==
- dependencies:
- is-absolute-url "^2.0.0"
- normalize-url "^3.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-whitespace@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82"
- integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==
- dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize@8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize/-/postcss-normalize-8.0.1.tgz#90e80a7763d7fdf2da6f2f0f82be832ce4f66776"
- integrity sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==
- dependencies:
- "@csstools/normalize.css" "^10.1.0"
- browserslist "^4.6.2"
- postcss "^7.0.17"
- postcss-browser-comments "^3.0.0"
- sanitize.css "^10.0.0"
-
-postcss-ordered-values@^4.1.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee"
- integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==
- dependencies:
- cssnano-util-get-arguments "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-overflow-shorthand@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz#31ecf350e9c6f6ddc250a78f0c3e111f32dd4c30"
- integrity sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==
- dependencies:
- postcss "^7.0.2"
-
-postcss-page-break@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-2.0.0.tgz#add52d0e0a528cabe6afee8b46e2abb277df46bf"
- integrity sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==
- dependencies:
- postcss "^7.0.2"
-
-postcss-place@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-4.0.1.tgz#e9f39d33d2dc584e46ee1db45adb77ca9d1dcc62"
- integrity sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-preset-env@6.7.0:
- version "6.7.0"
- resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz#c34ddacf8f902383b35ad1e030f178f4cdf118a5"
- integrity sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==
- dependencies:
- autoprefixer "^9.6.1"
- browserslist "^4.6.4"
- caniuse-lite "^1.0.30000981"
- css-blank-pseudo "^0.1.4"
- css-has-pseudo "^0.10.0"
- css-prefers-color-scheme "^3.1.1"
- cssdb "^4.4.0"
- postcss "^7.0.17"
- postcss-attribute-case-insensitive "^4.0.1"
- postcss-color-functional-notation "^2.0.1"
- postcss-color-gray "^5.0.0"
- postcss-color-hex-alpha "^5.0.3"
- postcss-color-mod-function "^3.0.3"
- postcss-color-rebeccapurple "^4.0.1"
- postcss-custom-media "^7.0.8"
- postcss-custom-properties "^8.0.11"
- postcss-custom-selectors "^5.1.2"
- postcss-dir-pseudo-class "^5.0.0"
- postcss-double-position-gradients "^1.0.0"
- postcss-env-function "^2.0.2"
- postcss-focus-visible "^4.0.0"
- postcss-focus-within "^3.0.0"
- postcss-font-variant "^4.0.0"
- postcss-gap-properties "^2.0.0"
- postcss-image-set-function "^3.0.1"
- postcss-initial "^3.0.0"
- postcss-lab-function "^2.0.1"
- postcss-logical "^3.0.0"
- postcss-media-minmax "^4.0.0"
- postcss-nesting "^7.0.0"
- postcss-overflow-shorthand "^2.0.0"
- postcss-page-break "^2.0.0"
- postcss-place "^4.0.1"
- postcss-pseudo-class-any-link "^6.0.0"
- postcss-replace-overflow-wrap "^3.0.0"
- postcss-selector-matches "^4.0.0"
- postcss-selector-not "^4.0.0"
-
-postcss-pseudo-class-any-link@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz#2ed3eed393b3702879dec4a87032b210daeb04d1"
- integrity sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==
- dependencies:
- postcss "^7.0.2"
- postcss-selector-parser "^5.0.0-rc.3"
-
-postcss-reduce-initial@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df"
- integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==
- dependencies:
- browserslist "^4.0.0"
- caniuse-api "^3.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
-
-postcss-reduce-transforms@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29"
- integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==
- dependencies:
- cssnano-util-get-match "^4.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-replace-overflow-wrap@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz#61b360ffdaedca84c7c918d2b0f0d0ea559ab01c"
- integrity sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==
- dependencies:
- postcss "^7.0.2"
-
-postcss-safe-parser@5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz#459dd27df6bc2ba64608824ba39e45dacf5e852d"
- integrity sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==
- dependencies:
- postcss "^8.1.0"
-
-postcss-selector-matches@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz#71c8248f917ba2cc93037c9637ee09c64436fcff"
- integrity sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==
- dependencies:
- balanced-match "^1.0.0"
- postcss "^7.0.2"
-
-postcss-selector-not@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz#263016eef1cf219e0ade9a913780fc1f48204cbf"
- integrity sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==
- dependencies:
- balanced-match "^1.0.0"
- postcss "^7.0.2"
-
-postcss-selector-parser@^3.0.0:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270"
- integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==
- dependencies:
- dot-prop "^5.2.0"
- indexes-of "^1.0.1"
- uniq "^1.0.1"
-
-postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c"
- integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==
- dependencies:
- cssesc "^2.0.0"
- indexes-of "^1.0.1"
- uniq "^1.0.1"
-
-postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
- version "6.0.6"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea"
- integrity sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==
- dependencies:
- cssesc "^3.0.0"
- util-deprecate "^1.0.2"
-
-postcss-svgo@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.3.tgz#343a2cdbac9505d416243d496f724f38894c941e"
- integrity sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==
- dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
- svgo "^1.0.0"
-
-postcss-unique-selectors@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac"
- integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==
- dependencies:
- alphanum-sort "^1.0.0"
- postcss "^7.0.0"
- uniqs "^2.0.0"
-
-postcss-value-parser@^3.0.0:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
- integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
-
-postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
- integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
-
-postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f"
- integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==
- dependencies:
- flatten "^1.0.2"
- indexes-of "^1.0.1"
- uniq "^1.0.1"
-
-postcss@7.0.36, postcss@^7, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.36, postcss@^7.0.5, postcss@^7.0.6:
- version "7.0.36"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.36.tgz#056f8cffa939662a8f5905950c07d5285644dfcb"
- integrity sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==
- dependencies:
- chalk "^2.4.2"
- source-map "^0.6.1"
- supports-color "^6.1.0"
-
-postcss@^8.1.0:
- version "8.3.6"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.3.6.tgz#2730dd76a97969f37f53b9a6096197be311cc4ea"
- integrity sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==
- dependencies:
- colorette "^1.2.2"
- nanoid "^3.1.23"
- source-map-js "^0.6.2"
-
-prelude-ls@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
- integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
-
-prelude-ls@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
- integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
-
-prepend-http@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
- integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
-
-prettier@^2.3.1:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.4.0.tgz#85bdfe0f70c3e777cf13a4ffff39713ca6f64cba"
- integrity sha512-DsEPLY1dE5HF3BxCRBmD4uYZ+5DCbvatnolqTqcxEgKVZnL2kUfyu7b8pPQ5+hTBkdhU9SLUmK0/pHb07RE4WQ==
-
-prettier@~2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5"
- integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
-
-pretty-bytes@^5.3.0:
- version "5.6.0"
- resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
- integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
-
-pretty-error@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6"
- integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==
- dependencies:
- lodash "^4.17.20"
- renderkid "^2.0.4"
-
-pretty-format@^26.6.0, pretty-format@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93"
- integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==
- dependencies:
- "@jest/types" "^26.6.2"
- ansi-regex "^5.0.0"
- ansi-styles "^4.0.0"
- react-is "^17.0.1"
-
-pretty-format@^27.0.0, pretty-format@^27.1.1:
- version "27.1.1"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.1.1.tgz#cbaf9ec6cd7cfc3141478b6f6293c0ccdbe968e0"
- integrity sha512-zdBi/xlstKJL42UH7goQti5Hip/B415w1Mfj+WWWYMBylAYtKESnXGUtVVcMVid9ReVjypCotUV6CEevYPHv2g==
- dependencies:
- "@jest/types" "^27.1.1"
- ansi-regex "^5.0.0"
- ansi-styles "^5.0.0"
- react-is "^17.0.1"
-
-pretty-hrtime@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
- integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
-
-prismjs@^1.21.0, prismjs@~1.24.0:
- version "1.24.1"
- resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.24.1.tgz#c4d7895c4d6500289482fa8936d9cdd192684036"
- integrity sha512-mNPsedLuk90RVJioIky8ANZEwYm5w9LcvCXrxHlwf4fNVSn8jEipMybMkWUyyF0JhnC+C4VcOVSBuHRKs1L5Ow==
-
-process-nextick-args@~2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
- integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-
-process@^0.11.10:
- version "0.11.10"
- resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
- integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
-
-progress@^2.0.0:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
- integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
-
-promise-inflight@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
- integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
-
-promise.allsettled@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/promise.allsettled/-/promise.allsettled-1.0.4.tgz#65e71f2a604082ed69c548b68603294090ee6803"
- integrity sha512-o73CbvQh/OnPFShxHcHxk0baXR2a1m4ozb85ha0H14VEoi/EJJLa9mnPfEWJx9RjA9MLfhdjZ8I6HhWtBa64Ag==
- dependencies:
- array.prototype.map "^1.0.3"
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.2"
- get-intrinsic "^1.0.2"
- iterate-value "^1.0.2"
-
-promise.prototype.finally@^3.1.0:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/promise.prototype.finally/-/promise.prototype.finally-3.1.2.tgz#b8af89160c9c673cefe3b4c4435b53cfd0287067"
- integrity sha512-A2HuJWl2opDH0EafgdjwEw7HysI8ff/n4lW4QEVBCUXFk9QeGecBWv0Deph0UmLe3tTNYegz8MOjsVuE6SMoJA==
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.0-next.0"
- function-bind "^1.1.1"
-
-promise@^8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/promise/-/promise-8.1.0.tgz#697c25c3dfe7435dd79fcd58c38a135888eaf05e"
- integrity sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==
- dependencies:
- asap "~2.0.6"
-
-prompts@2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.0.tgz#4aa5de0723a231d1ee9121c40fdf663df73f61d7"
- integrity sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==
- dependencies:
- kleur "^3.0.3"
- sisteransi "^1.0.5"
-
-prompts@^2.0.1, prompts@^2.4.0:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61"
- integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==
- dependencies:
- kleur "^3.0.3"
- sisteransi "^1.0.5"
-
-prop-types@^15.0.0, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2:
- version "15.7.2"
- resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
- integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
- dependencies:
- loose-envify "^1.4.0"
- object-assign "^4.1.1"
- react-is "^16.8.1"
-
-property-information@^5.0.0, property-information@^5.3.0:
- version "5.6.0"
- resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69"
- integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==
- dependencies:
- xtend "^4.0.0"
-
-proto-list@~1.2.1:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
- integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
-
-proxy-addr@~2.0.5:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"
- integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==
- dependencies:
- forwarded "0.2.0"
- ipaddr.js "1.9.1"
-
-prr@~1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
- integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
-
-pseudomap@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
- integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
-
-psl@^1.1.33:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
- integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
-
-public-encrypt@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
- integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
- dependencies:
- bn.js "^4.1.0"
- browserify-rsa "^4.0.0"
- create-hash "^1.1.0"
- parse-asn1 "^5.0.0"
- randombytes "^2.0.1"
- safe-buffer "^5.1.2"
-
-pump@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
- integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
-pump@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
- integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
-pumpify@^1.3.3:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
- integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
- dependencies:
- duplexify "^3.6.0"
- inherits "^2.0.3"
- pump "^2.0.0"
-
-punycode@1.3.2:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
- integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
-
-punycode@^1.2.4:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
- integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
-
-punycode@^2.1.0, punycode@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
- integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
-
-q@^1.1.2:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
- integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
-
-qs@6.7.0:
- version "6.7.0"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
- integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
-
-qs@^6.10.0:
- version "6.10.1"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a"
- integrity sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==
- dependencies:
- side-channel "^1.0.4"
-
-query-string@^4.1.0:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
- integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
- dependencies:
- object-assign "^4.1.0"
- strict-uri-encode "^1.0.0"
-
-querystring-es3@^0.2.0:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
- integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
-
-querystring@0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
- integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
-
-querystring@^0.2.0:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd"
- integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==
-
-querystringify@^2.1.1:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
- integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==
-
-queue-microtask@^1.2.2:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
- integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
-
-raf@^3.4.1:
- version "3.4.1"
- resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
- integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
- dependencies:
- performance-now "^2.1.0"
-
-ramda@^0.21.0:
- version "0.21.0"
- resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.21.0.tgz#a001abedb3ff61077d4ff1d577d44de77e8d0a35"
- integrity sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=
-
-randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
- integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
- dependencies:
- safe-buffer "^5.1.0"
-
-randomfill@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
- integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
- dependencies:
- randombytes "^2.0.5"
- safe-buffer "^5.1.0"
-
-range-parser@^1.2.1, range-parser@~1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
- integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
-
-raw-body@2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
- integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
- dependencies:
- bytes "3.1.0"
- http-errors "1.7.2"
- iconv-lite "0.4.24"
- unpipe "1.0.0"
-
-raw-loader@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.2.tgz#1aac6b7d1ad1501e66efdac1522c73e59a584eb6"
- integrity sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==
- dependencies:
- loader-utils "^2.0.0"
- schema-utils "^3.0.0"
-
-react-app-polyfill@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz#a0bea50f078b8a082970a9d853dc34b6dcc6a3cf"
- integrity sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==
- dependencies:
- core-js "^3.6.5"
- object-assign "^4.1.1"
- promise "^8.1.0"
- raf "^3.4.1"
- regenerator-runtime "^0.13.7"
- whatwg-fetch "^3.4.1"
-
-react-colorful@^5.1.2:
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/react-colorful/-/react-colorful-5.4.0.tgz#e05e602469f9768234f29c1bad9ec1f4e86145a2"
- integrity sha512-k7QJXuQGWevr/V8hoMJ1wBW9i2CVhBdDXpBf3jy/AAtzVyYtsFqEAT+y+NOGiSG1cmnGTreqm5EFLXlVaKbPLQ==
-
-react-dev-utils@^11.0.3:
- version "11.0.4"
- resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-11.0.4.tgz#a7ccb60257a1ca2e0efe7a83e38e6700d17aa37a"
- integrity sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==
- dependencies:
- "@babel/code-frame" "7.10.4"
- address "1.1.2"
- browserslist "4.14.2"
- chalk "2.4.2"
- cross-spawn "7.0.3"
- detect-port-alt "1.1.6"
- escape-string-regexp "2.0.0"
- filesize "6.1.0"
- find-up "4.1.0"
- fork-ts-checker-webpack-plugin "4.1.6"
- global-modules "2.0.0"
- globby "11.0.1"
- gzip-size "5.1.1"
- immer "8.0.1"
- is-root "2.1.0"
- loader-utils "2.0.0"
- open "^7.0.2"
- pkg-up "3.1.0"
- prompts "2.4.0"
- react-error-overlay "^6.0.9"
- recursive-readdir "2.2.2"
- shell-quote "1.7.2"
- strip-ansi "6.0.0"
- text-table "0.2.0"
-
-react-docgen-typescript-plugin@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.0.tgz#f3b13df1acf3126957c689c47cd8552d42734feb"
- integrity sha512-Akc7EtryOA4d2yOX27B5ii+hyf/k15ymb01uB+VnRgtTAdfeDCmNPvyLbRJ6pRNYOuFlEBe1YfCH73bTPtpYVQ==
- dependencies:
- debug "^4.1.1"
- endent "^2.0.1"
- find-cache-dir "^3.3.1"
- flat-cache "^3.0.4"
- micromatch "^4.0.2"
- react-docgen-typescript "^1.22.0"
- tslib "^2.0.0"
- webpack-sources "^2.2.0"
-
-react-docgen-typescript@^1.22.0:
- version "1.22.0"
- resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-1.22.0.tgz#00232c8e8e47f4437cac133b879b3e9437284bee"
- integrity sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==
-
-react-docgen-typescript@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-2.1.0.tgz#20db64a7fd62e63a8a9469fb4abd90600878cbb2"
- integrity sha512-7kpzLsYzVxff//HUVz1sPWLCdoSNvHD3M8b/iQLdF8fgf7zp26eVysRrAUSxiAT4yQv2zl09zHjJEYSYNxQ8Jw==
-
-react-docgen@^5.0.0:
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-5.4.0.tgz#2cd7236720ec2769252ef0421f23250b39a153a1"
- integrity sha512-JBjVQ9cahmNlfjMGxWUxJg919xBBKAoy3hgDgKERbR+BcF4ANpDuzWAScC7j27hZfd8sJNmMPOLWo9+vB/XJEQ==
- dependencies:
- "@babel/core" "^7.7.5"
- "@babel/generator" "^7.12.11"
- "@babel/runtime" "^7.7.6"
- ast-types "^0.14.2"
- commander "^2.19.0"
- doctrine "^3.0.0"
- estree-to-babel "^3.1.0"
- neo-async "^2.6.1"
- node-dir "^0.1.10"
- strip-indent "^3.0.0"
-
-react-dom@^17.0.2:
- version "17.0.2"
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
- integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
- scheduler "^0.20.2"
-
-react-draggable@^4.4.3:
- version "4.4.4"
- resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-4.4.4.tgz#5b26d9996be63d32d285a426f41055de87e59b2f"
- integrity sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==
- dependencies:
- clsx "^1.1.1"
- prop-types "^15.6.0"
-
-react-element-to-jsx-string@^14.3.2:
- version "14.3.2"
- resolved "https://registry.yarnpkg.com/react-element-to-jsx-string/-/react-element-to-jsx-string-14.3.2.tgz#c0000ed54d1f8b4371731b669613f2d4e0f63d5c"
- integrity sha512-WZbvG72cjLXAxV7VOuSzuHEaI3RHj10DZu8EcKQpkKcAj7+qAkG5XUeSdX5FXrA0vPrlx0QsnAzZEBJwzV0e+w==
- dependencies:
- "@base2/pretty-print-object" "1.0.0"
- is-plain-object "3.0.1"
-
-react-error-overlay@^6.0.9:
- version "6.0.9"
- resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a"
- integrity sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==
-
-react-fast-compare@^3.0.1, react-fast-compare@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb"
- integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==
-
-react-geocode@^0.2.3:
- version "0.2.3"
- resolved "https://registry.yarnpkg.com/react-geocode/-/react-geocode-0.2.3.tgz#e27fa3f212a2629b2b2bb2a3a325a12b802b2dae"
- integrity sha512-sIpbgmn1IUzAxO4haOZ6jeeFnMD8ya9PC38yiNrmJ9vPWbvAO2D/2yfCBzZjGZVUm4PRzKAc0KghXfaEnug0TQ==
- dependencies:
- regenerator-runtime "^0.13.3"
-
-react-helmet-async@^1.0.7:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.1.2.tgz#653b7e6bbfdd239c5dcd6b8df2811c7a363b8334"
- integrity sha512-LTTzDDkyIleT/JJ6T/uqx7Y8qi1EuPPSiJawQY/nHHz0h7SPDT6HxP1YDDQx/fzcVxCqpWEEMS3QdrSrNkJYhg==
- dependencies:
- "@babel/runtime" "^7.12.5"
- invariant "^2.2.4"
- prop-types "^15.7.2"
- react-fast-compare "^3.2.0"
- shallowequal "^1.1.0"
-
-react-inspector@^2.3.1:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-2.3.1.tgz#f0eb7f520669b545b441af9d38ec6d706e5f649c"
- integrity sha512-tUUK7t3KWgZEIUktOYko5Ic/oYwvjEvQUFAGC1UeMeDaQ5za2yZFtItJa2RTwBJB//NxPr000WQK6sEbqC6y0Q==
- dependencies:
- babel-runtime "^6.26.0"
- is-dom "^1.0.9"
- prop-types "^15.6.1"
-
-react-inspector@^5.1.0:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-5.1.1.tgz#58476c78fde05d5055646ed8ec02030af42953c8"
- integrity sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==
- dependencies:
- "@babel/runtime" "^7.0.0"
- is-dom "^1.0.0"
- prop-types "^15.0.0"
-
-react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1:
- version "16.13.1"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
- integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
-
-"react-is@^16.8.0 || ^17.0.0", react-is@^17.0.1, react-is@^17.0.2:
- version "17.0.2"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
- integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
-
-react-leaflet@^3.2.0:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/react-leaflet/-/react-leaflet-3.2.1.tgz#5f04588b96f62b9476cbeb4ea39c698b5db78e1c"
- integrity sha512-3iS1fpOO+uaRpbuq68Euw9kgaoM9oIGBiDfeFtVb/C9PWBQvXdrv1n946Z8GrbQEhrT+hM9ND6NLLF9fGxTGRw==
- dependencies:
- "@react-leaflet/core" "^1.1.0"
-
-react-lifecycles-compat@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"
- integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==
-
-react-popper-tooltip@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-3.1.1.tgz#329569eb7b287008f04fcbddb6370452ad3f9eac"
- integrity sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==
- dependencies:
- "@babel/runtime" "^7.12.5"
- "@popperjs/core" "^2.5.4"
- react-popper "^2.2.4"
-
-react-popper@^2.2.4:
- version "2.2.5"
- resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-2.2.5.tgz#1214ef3cec86330a171671a4fbcbeeb65ee58e96"
- integrity sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==
- dependencies:
- react-fast-compare "^3.0.1"
- warning "^4.0.2"
-
-react-refresh@^0.8.3:
- version "0.8.3"
- resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f"
- integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==
-
-react-router-dom@^5.2.0:
- version "5.3.0"
- resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.0.tgz#da1bfb535a0e89a712a93b97dd76f47ad1f32363"
- integrity sha512-ObVBLjUZsphUUMVycibxgMdh5jJ1e3o+KpAZBVeHcNQZ4W+uUGGWsokurzlF4YOldQYRQL4y6yFRWM4m3svmuQ==
- dependencies:
- "@babel/runtime" "^7.12.13"
- history "^4.9.0"
- loose-envify "^1.3.1"
- prop-types "^15.6.2"
- react-router "5.2.1"
- tiny-invariant "^1.0.2"
- tiny-warning "^1.0.0"
-
-react-router@5.2.1:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.2.1.tgz#4d2e4e9d5ae9425091845b8dbc6d9d276239774d"
- integrity sha512-lIboRiOtDLFdg1VTemMwud9vRVuOCZmUIT/7lUoZiSpPODiiH1UQlfXy+vPLC/7IWdFYnhRwAyNqA/+I7wnvKQ==
- dependencies:
- "@babel/runtime" "^7.12.13"
- history "^4.9.0"
- hoist-non-react-statics "^3.1.0"
- loose-envify "^1.3.1"
- mini-create-react-context "^0.4.0"
- path-to-regexp "^1.7.0"
- prop-types "^15.6.2"
- react-is "^16.6.0"
- tiny-invariant "^1.0.2"
- tiny-warning "^1.0.0"
-
-react-scripts@4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-4.0.3.tgz#b1cafed7c3fa603e7628ba0f187787964cb5d345"
- integrity sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==
- dependencies:
- "@babel/core" "7.12.3"
- "@pmmmwh/react-refresh-webpack-plugin" "0.4.3"
- "@svgr/webpack" "5.5.0"
- "@typescript-eslint/eslint-plugin" "^4.5.0"
- "@typescript-eslint/parser" "^4.5.0"
- babel-eslint "^10.1.0"
- babel-jest "^26.6.0"
- babel-loader "8.1.0"
- babel-plugin-named-asset-import "^0.3.7"
- babel-preset-react-app "^10.0.0"
- bfj "^7.0.2"
- camelcase "^6.1.0"
- case-sensitive-paths-webpack-plugin "2.3.0"
- css-loader "4.3.0"
- dotenv "8.2.0"
- dotenv-expand "5.1.0"
- eslint "^7.11.0"
- eslint-config-react-app "^6.0.0"
- eslint-plugin-flowtype "^5.2.0"
- eslint-plugin-import "^2.22.1"
- eslint-plugin-jest "^24.1.0"
- eslint-plugin-jsx-a11y "^6.3.1"
- eslint-plugin-react "^7.21.5"
- eslint-plugin-react-hooks "^4.2.0"
- eslint-plugin-testing-library "^3.9.2"
- eslint-webpack-plugin "^2.5.2"
- file-loader "6.1.1"
- fs-extra "^9.0.1"
- html-webpack-plugin "4.5.0"
- identity-obj-proxy "3.0.0"
- jest "26.6.0"
- jest-circus "26.6.0"
- jest-resolve "26.6.0"
- jest-watch-typeahead "0.6.1"
- mini-css-extract-plugin "0.11.3"
- optimize-css-assets-webpack-plugin "5.0.4"
- pnp-webpack-plugin "1.6.4"
- postcss-flexbugs-fixes "4.2.1"
- postcss-loader "3.0.0"
- postcss-normalize "8.0.1"
- postcss-preset-env "6.7.0"
- postcss-safe-parser "5.0.2"
- prompts "2.4.0"
- react-app-polyfill "^2.0.0"
- react-dev-utils "^11.0.3"
- react-refresh "^0.8.3"
- resolve "1.18.1"
- resolve-url-loader "^3.1.2"
- sass-loader "^10.0.5"
- semver "7.3.2"
- style-loader "1.3.0"
- terser-webpack-plugin "4.2.3"
- ts-pnp "1.2.0"
- url-loader "4.1.1"
- webpack "4.44.2"
- webpack-dev-server "3.11.1"
- webpack-manifest-plugin "2.2.0"
- workbox-webpack-plugin "5.1.4"
- optionalDependencies:
- fsevents "^2.1.3"
-
-react-sizeme@^3.0.1:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/react-sizeme/-/react-sizeme-3.0.2.tgz#4a2f167905ba8f8b8d932a9e35164e459f9020e4"
- integrity sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==
- dependencies:
- element-resize-detector "^1.2.2"
- invariant "^2.2.4"
- shallowequal "^1.1.0"
- throttle-debounce "^3.0.1"
-
-react-syntax-highlighter@^13.5.3:
- version "13.5.3"
- resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-13.5.3.tgz#9712850f883a3e19eb858cf93fad7bb357eea9c6"
- integrity sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==
- dependencies:
- "@babel/runtime" "^7.3.1"
- highlight.js "^10.1.1"
- lowlight "^1.14.0"
- prismjs "^1.21.0"
- refractor "^3.1.0"
-
-react-textarea-autosize@^8.3.0:
- version "8.3.3"
- resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.3.tgz#f70913945369da453fd554c168f6baacd1fa04d8"
- integrity sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==
- dependencies:
- "@babel/runtime" "^7.10.2"
- use-composed-ref "^1.0.0"
- use-latest "^1.0.0"
-
-react-transition-group@^4.4.0:
- version "4.4.2"
- resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470"
- integrity sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==
- dependencies:
- "@babel/runtime" "^7.5.5"
- dom-helpers "^5.0.1"
- loose-envify "^1.4.0"
- prop-types "^15.6.2"
-
-react@^17.0.2:
- version "17.0.2"
- resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
- integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
-
-read-pkg-up@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
- integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=
- dependencies:
- find-up "^2.0.0"
- read-pkg "^3.0.0"
-
-read-pkg-up@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507"
- integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
- dependencies:
- find-up "^4.1.0"
- read-pkg "^5.2.0"
- type-fest "^0.8.1"
-
-read-pkg@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
- integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
- dependencies:
- load-json-file "^4.0.0"
- normalize-package-data "^2.3.2"
- path-type "^3.0.0"
-
-read-pkg@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc"
- integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
- dependencies:
- "@types/normalize-package-data" "^2.4.0"
- normalize-package-data "^2.5.0"
- parse-json "^5.0.0"
- type-fest "^0.6.0"
-
-"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
- version "2.3.7"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
- integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
- dependencies:
- core-util-is "~1.0.0"
- inherits "~2.0.3"
- isarray "~1.0.0"
- process-nextick-args "~2.0.0"
- safe-buffer "~5.1.1"
- string_decoder "~1.1.1"
- util-deprecate "~1.0.1"
-
-readable-stream@^3.0.6, readable-stream@^3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
- integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
- dependencies:
- inherits "^2.0.3"
- string_decoder "^1.1.1"
- util-deprecate "^1.0.1"
-
-readdirp@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
- integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
- dependencies:
- graceful-fs "^4.1.11"
- micromatch "^3.1.10"
- readable-stream "^2.0.2"
-
-readdirp@~3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
- integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
- dependencies:
- picomatch "^2.2.1"
-
-recursive-readdir@2.2.2:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
- integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==
- dependencies:
- minimatch "3.0.4"
-
-redent@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f"
- integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
- dependencies:
- indent-string "^4.0.0"
- strip-indent "^3.0.0"
-
-refractor@^3.1.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.4.0.tgz#62bd274b06c942041f390c371b676eb67cb0a678"
- integrity sha512-dBeD02lC5eytm9Gld2Mx0cMcnR+zhSnsTfPpWqFaMgUMJfC9A6bcN3Br/NaXrnBJcuxnLFR90k1jrkaSyV8umg==
- dependencies:
- hastscript "^6.0.0"
- parse-entities "^2.0.0"
- prismjs "~1.24.0"
-
-regenerate-unicode-properties@^8.2.0:
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
- integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
- dependencies:
- regenerate "^1.4.0"
-
-regenerate@^1.4.0:
- version "1.4.2"
- resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
- integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-
-regenerator-runtime@^0.11.0:
- version "0.11.1"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
- integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
-
-regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.7:
- version "0.13.9"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
- integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
-
-regenerator-transform@^0.14.2:
- version "0.14.5"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
- integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
- dependencies:
- "@babel/runtime" "^7.8.4"
-
-regex-not@^1.0.0, regex-not@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
- integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
- dependencies:
- extend-shallow "^3.0.2"
- safe-regex "^1.1.0"
-
-regex-parser@^2.2.11:
- version "2.2.11"
- resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58"
- integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==
-
-regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26"
- integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
-
-regexpp@^3.1.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
- integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
-
-regexpu-core@^4.7.1:
- version "4.7.1"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6"
- integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==
- dependencies:
- regenerate "^1.4.0"
- regenerate-unicode-properties "^8.2.0"
- regjsgen "^0.5.1"
- regjsparser "^0.6.4"
- unicode-match-property-ecmascript "^1.0.4"
- unicode-match-property-value-ecmascript "^1.2.0"
-
-regjsgen@^0.5.1:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
- integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
-
-regjsparser@^0.6.4:
- version "0.6.9"
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
- integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
- dependencies:
- jsesc "~0.5.0"
-
-relateurl@^0.2.7:
- version "0.2.7"
- resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
- integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=
-
-remark-external-links@^8.0.0:
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/remark-external-links/-/remark-external-links-8.0.0.tgz#308de69482958b5d1cd3692bc9b725ce0240f345"
- integrity sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==
- dependencies:
- extend "^3.0.0"
- is-absolute-url "^3.0.0"
- mdast-util-definitions "^4.0.0"
- space-separated-tokens "^1.0.0"
- unist-util-visit "^2.0.0"
-
-remark-footnotes@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f"
- integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==
-
-remark-mdx@1.6.22:
- version "1.6.22"
- resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-1.6.22.tgz#06a8dab07dcfdd57f3373af7f86bd0e992108bbd"
- integrity sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==
- dependencies:
- "@babel/core" "7.12.9"
- "@babel/helper-plugin-utils" "7.10.4"
- "@babel/plugin-proposal-object-rest-spread" "7.12.1"
- "@babel/plugin-syntax-jsx" "7.12.1"
- "@mdx-js/util" "1.6.22"
- is-alphabetical "1.0.4"
- remark-parse "8.0.3"
- unified "9.2.0"
-
-remark-parse@8.0.3:
- version "8.0.3"
- resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1"
- integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==
- dependencies:
- ccount "^1.0.0"
- collapse-white-space "^1.0.2"
- is-alphabetical "^1.0.0"
- is-decimal "^1.0.0"
- is-whitespace-character "^1.0.0"
- is-word-character "^1.0.0"
- markdown-escapes "^1.0.0"
- parse-entities "^2.0.0"
- repeat-string "^1.5.4"
- state-toggle "^1.0.0"
- trim "0.0.1"
- trim-trailing-lines "^1.0.0"
- unherit "^1.0.4"
- unist-util-remove-position "^2.0.0"
- vfile-location "^3.0.0"
- xtend "^4.0.1"
-
-remark-slug@^6.0.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/remark-slug/-/remark-slug-6.1.0.tgz#0503268d5f0c4ecb1f33315c00465ccdd97923ce"
- integrity sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==
- dependencies:
- github-slugger "^1.0.0"
- mdast-util-to-string "^1.0.0"
- unist-util-visit "^2.0.0"
-
-remark-squeeze-paragraphs@4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz#76eb0e085295131c84748c8e43810159c5653ead"
- integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==
- dependencies:
- mdast-squeeze-paragraphs "^4.0.0"
-
-remove-trailing-separator@^1.0.1:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
- integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
-
-renderkid@^2.0.4:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.7.tgz#464f276a6bdcee606f4a15993f9b29fc74ca8609"
- integrity sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==
- dependencies:
- css-select "^4.1.3"
- dom-converter "^0.2.0"
- htmlparser2 "^6.1.0"
- lodash "^4.17.21"
- strip-ansi "^3.0.1"
-
-repeat-element@^1.1.2:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9"
- integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==
-
-repeat-string@^1.5.4, repeat-string@^1.6.1:
- version "1.6.1"
- resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
- integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
-
-require-directory@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
- integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
-
-require-from-string@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
- integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
-
-require-main-filename@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
- integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
-
-requires-port@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
- integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
-
-resolve-cwd@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
- integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=
- dependencies:
- resolve-from "^3.0.0"
-
-resolve-cwd@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
- integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
- dependencies:
- resolve-from "^5.0.0"
-
-resolve-from@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
- integrity sha1-six699nWiBvItuZTM17rywoYh0g=
-
-resolve-from@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
- integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
-
-resolve-from@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
- integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
-
-resolve-pathname@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd"
- integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==
-
-resolve-url-loader@^3.1.2:
- version "3.1.4"
- resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.4.tgz#3c16caebe0b9faea9c7cc252fa49d2353c412320"
- integrity sha512-D3sQ04o0eeQEySLrcz4DsX3saHfsr8/N6tfhblxgZKXxMT2Louargg12oGNfoTRLV09GXhVUe5/qgA5vdgNigg==
- dependencies:
- adjust-sourcemap-loader "3.0.0"
- camelcase "5.3.1"
- compose-function "3.0.3"
- convert-source-map "1.7.0"
- es6-iterator "2.0.3"
- loader-utils "1.2.3"
- postcss "7.0.36"
- rework "1.0.1"
- rework-visit "1.0.0"
- source-map "0.6.1"
-
-resolve-url@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
- integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
-
-resolve@1.18.1:
- version "1.18.1"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.18.1.tgz#018fcb2c5b207d2a6424aee361c5a266da8f4130"
- integrity sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==
- dependencies:
- is-core-module "^2.0.0"
- path-parse "^1.0.6"
-
-resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.3.2, resolve@^1.8.1:
- version "1.20.0"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
- integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
- dependencies:
- is-core-module "^2.2.0"
- path-parse "^1.0.6"
-
-resolve@^2.0.0-next.3:
- version "2.0.0-next.3"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
- integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
- dependencies:
- is-core-module "^2.2.0"
- path-parse "^1.0.6"
-
-ret@~0.1.10:
- version "0.1.15"
- resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
- integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
-
-retry@^0.12.0:
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
- integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
-
-reusify@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
- integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
-
-rework-visit@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a"
- integrity sha1-mUWygD8hni96ygCtuLyfZA+ELJo=
-
-rework@1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7"
- integrity sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=
- dependencies:
- convert-source-map "^0.3.3"
- css "^2.0.0"
-
-rgb-regex@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
- integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE=
-
-rgba-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
- integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
-
-rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.3:
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
- integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
- dependencies:
- glob "^7.1.3"
-
-rimraf@^3.0.0, rimraf@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
- integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
- dependencies:
- glob "^7.1.3"
-
-ripemd160@^2.0.0, ripemd160@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
- integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
- dependencies:
- hash-base "^3.0.0"
- inherits "^2.0.1"
-
-rollup-plugin-babel@^4.3.3:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz#d15bd259466a9d1accbdb2fe2fff17c52d030acb"
- integrity sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==
- dependencies:
- "@babel/helper-module-imports" "^7.0.0"
- rollup-pluginutils "^2.8.1"
-
-rollup-plugin-terser@^5.3.1:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz#8c650062c22a8426c64268548957463bf981b413"
- integrity sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==
- dependencies:
- "@babel/code-frame" "^7.5.5"
- jest-worker "^24.9.0"
- rollup-pluginutils "^2.8.2"
- serialize-javascript "^4.0.0"
- terser "^4.6.2"
-
-rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2:
- version "2.8.2"
- resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e"
- integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
- dependencies:
- estree-walker "^0.6.1"
-
-rollup@^1.31.1:
- version "1.32.1"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.32.1.tgz#4480e52d9d9e2ae4b46ba0d9ddeaf3163940f9c4"
- integrity sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==
- dependencies:
- "@types/estree" "*"
- "@types/node" "*"
- acorn "^7.1.0"
-
-rsvp@^4.8.4:
- version "4.8.5"
- resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
- integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
-
-run-parallel@^1.1.9:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
- integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
- dependencies:
- queue-microtask "^1.2.2"
-
-run-queue@^1.0.0, run-queue@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
- integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
- dependencies:
- aproba "^1.1.1"
-
-safe-buffer@5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
- integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==
-
-safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
- integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-
-safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
- integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
-
-safe-regex@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
- integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
- dependencies:
- ret "~0.1.10"
-
-"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.1.0:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
- integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-
-sane@^4.0.3:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
- integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
- dependencies:
- "@cnakazawa/watch" "^1.0.3"
- anymatch "^2.0.0"
- capture-exit "^2.0.0"
- exec-sh "^0.3.2"
- execa "^1.0.0"
- fb-watchman "^2.0.0"
- micromatch "^3.1.4"
- minimist "^1.1.1"
- walker "~1.0.5"
-
-sanitize.css@^10.0.0:
- version "10.0.0"
- resolved "https://registry.yarnpkg.com/sanitize.css/-/sanitize.css-10.0.0.tgz#b5cb2547e96d8629a60947544665243b1dc3657a"
- integrity sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==
-
-sass-loader@^10.0.5:
- version "10.2.0"
- resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.2.0.tgz#3d64c1590f911013b3fa48a0b22a83d5e1494716"
- integrity sha512-kUceLzC1gIHz0zNJPpqRsJyisWatGYNFRmv2CKZK2/ngMJgLqxTbXwe/hJ85luyvZkgqU3VlJ33UVF2T/0g6mw==
- dependencies:
- klona "^2.0.4"
- loader-utils "^2.0.0"
- neo-async "^2.6.2"
- schema-utils "^3.0.0"
- semver "^7.3.2"
-
-sax@~1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
- integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
-
-saxes@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
- integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
- dependencies:
- xmlchars "^2.2.0"
-
-scheduler@^0.20.2:
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
- integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
-
-schema-utils@2.7.0:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7"
- integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==
- dependencies:
- "@types/json-schema" "^7.0.4"
- ajv "^6.12.2"
- ajv-keywords "^3.4.1"
-
-schema-utils@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
- integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
- dependencies:
- ajv "^6.1.0"
- ajv-errors "^1.0.0"
- ajv-keywords "^3.1.0"
-
-schema-utils@^2.6.5, schema-utils@^2.7.0, schema-utils@^2.7.1:
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
- integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
- dependencies:
- "@types/json-schema" "^7.0.5"
- ajv "^6.12.4"
- ajv-keywords "^3.5.2"
-
-schema-utils@^3.0.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"
- integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
- dependencies:
- "@types/json-schema" "^7.0.8"
- ajv "^6.12.5"
- ajv-keywords "^3.5.2"
-
-select-hose@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
- integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=
-
-selfsigned@^1.10.8:
- version "1.10.11"
- resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.11.tgz#24929cd906fe0f44b6d01fb23999a739537acbe9"
- integrity sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==
- dependencies:
- node-forge "^0.10.0"
-
-"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0:
- version "5.7.1"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
- integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-
-semver@7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
- integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
-
-semver@7.3.2:
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
- integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
-
-semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
- integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-
-semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5:
- version "7.3.5"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
- integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
- dependencies:
- lru-cache "^6.0.0"
-
-send@0.17.1:
- version "0.17.1"
- resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
- integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
- dependencies:
- debug "2.6.9"
- depd "~1.1.2"
- destroy "~1.0.4"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- etag "~1.8.1"
- fresh "0.5.2"
- http-errors "~1.7.2"
- mime "1.6.0"
- ms "2.1.1"
- on-finished "~2.3.0"
- range-parser "~1.2.1"
- statuses "~1.5.0"
-
-serialize-javascript@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
- integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
- dependencies:
- randombytes "^2.1.0"
-
-serialize-javascript@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4"
- integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
- dependencies:
- randombytes "^2.1.0"
-
-serve-favicon@^2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0"
- integrity sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=
- dependencies:
- etag "~1.8.1"
- fresh "0.5.2"
- ms "2.1.1"
- parseurl "~1.3.2"
- safe-buffer "5.1.1"
-
-serve-index@^1.9.1:
- version "1.9.1"
- resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
- integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=
- dependencies:
- accepts "~1.3.4"
- batch "0.6.1"
- debug "2.6.9"
- escape-html "~1.0.3"
- http-errors "~1.6.2"
- mime-types "~2.1.17"
- parseurl "~1.3.2"
-
-serve-static@1.14.1:
- version "1.14.1"
- resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
- integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
- dependencies:
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- parseurl "~1.3.3"
- send "0.17.1"
-
-set-blocking@^2.0.0, set-blocking@~2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
- integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
-
-set-value@^2.0.0, set-value@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
- integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
- dependencies:
- extend-shallow "^2.0.1"
- is-extendable "^0.1.1"
- is-plain-object "^2.0.3"
- split-string "^3.0.1"
-
-setimmediate@^1.0.4:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
- integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
-
-setprototypeof@1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
- integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
-
-setprototypeof@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
- integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
-
-sha.js@^2.4.0, sha.js@^2.4.8:
- version "2.4.11"
- resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
- integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
- dependencies:
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-shallow-clone@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
- integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
- dependencies:
- kind-of "^6.0.2"
-
-shallowequal@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
- integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
-
-shebang-command@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
- integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
- dependencies:
- shebang-regex "^1.0.0"
-
-shebang-command@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
- integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
- dependencies:
- shebang-regex "^3.0.0"
-
-shebang-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
- integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
-
-shebang-regex@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
- integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
-
-shell-quote@1.7.2:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
- integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
-
-shellwords@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
- integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
-
-side-channel@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
- integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
- dependencies:
- call-bind "^1.0.0"
- get-intrinsic "^1.0.2"
- object-inspect "^1.9.0"
-
-sigmund@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
- integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=
-
-signal-exit@^3.0.0, signal-exit@^3.0.2:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
- integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
-
-simple-swizzle@^0.2.2:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
- integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
- dependencies:
- is-arrayish "^0.3.1"
-
-sisteransi@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
- integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
-
-slash@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
- integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
-
-slash@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
- integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
-
-slice-ansi@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
- integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
- dependencies:
- ansi-styles "^4.0.0"
- astral-regex "^2.0.0"
- is-fullwidth-code-point "^3.0.0"
-
-snapdragon-node@^2.0.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
- integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
- dependencies:
- define-property "^1.0.0"
- isobject "^3.0.0"
- snapdragon-util "^3.0.1"
-
-snapdragon-util@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
- integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
- dependencies:
- kind-of "^3.2.0"
-
-snapdragon@^0.8.1:
- version "0.8.2"
- resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
- integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
- dependencies:
- base "^0.11.1"
- debug "^2.2.0"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- map-cache "^0.2.2"
- source-map "^0.5.6"
- source-map-resolve "^0.5.0"
- use "^3.1.0"
-
-sockjs-client@^1.5.0:
- version "1.5.2"
- resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.5.2.tgz#4bc48c2da9ce4769f19dc723396b50f5c12330a3"
- integrity sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==
- dependencies:
- debug "^3.2.6"
- eventsource "^1.0.7"
- faye-websocket "^0.11.3"
- inherits "^2.0.4"
- json3 "^3.3.3"
- url-parse "^1.5.3"
-
-sockjs@^0.3.21:
- version "0.3.21"
- resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.21.tgz#b34ffb98e796930b60a0cfa11904d6a339a7d417"
- integrity sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==
- dependencies:
- faye-websocket "^0.11.3"
- uuid "^3.4.0"
- websocket-driver "^0.7.4"
-
-sort-keys@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
- integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
- dependencies:
- is-plain-obj "^1.0.0"
-
-source-list-map@^2.0.0, source-list-map@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
- integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
-
-source-map-js@^0.6.2:
- version "0.6.2"
- resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e"
- integrity sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==
-
-source-map-resolve@^0.5.0, source-map-resolve@^0.5.2:
- version "0.5.3"
- resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
- integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
- dependencies:
- atob "^2.1.2"
- decode-uri-component "^0.2.0"
- resolve-url "^0.2.1"
- source-map-url "^0.4.0"
- urix "^0.1.0"
-
-source-map-resolve@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.6.0.tgz#3d9df87e236b53f16d01e58150fc7711138e5ed2"
- integrity sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==
- dependencies:
- atob "^2.1.2"
- decode-uri-component "^0.2.0"
-
-source-map-support@^0.5.16, source-map-support@^0.5.6, source-map-support@~0.5.12, source-map-support@~0.5.19:
- version "0.5.20"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9"
- integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==
- dependencies:
- buffer-from "^1.0.0"
- source-map "^0.6.0"
-
-source-map-url@^0.4.0:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56"
- integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==
-
-source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
- integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-
-source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7:
- version "0.5.7"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
- integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
-
-source-map@^0.7.3, source-map@~0.7.2:
- version "0.7.3"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
- integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
-
-sourcemap-codec@^1.4.4:
- version "1.4.8"
- resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
- integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
-
-space-separated-tokens@^1.0.0:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899"
- integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==
-
-spdx-correct@^3.0.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
- integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
- dependencies:
- spdx-expression-parse "^3.0.0"
- spdx-license-ids "^3.0.0"
-
-spdx-exceptions@^2.1.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
- integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
-
-spdx-expression-parse@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
- integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
- dependencies:
- spdx-exceptions "^2.1.0"
- spdx-license-ids "^3.0.0"
-
-spdx-license-ids@^3.0.0:
- version "3.0.10"
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz#0d9becccde7003d6c658d487dd48a32f0bf3014b"
- integrity sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==
-
-spdy-transport@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31"
- integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==
- dependencies:
- debug "^4.1.0"
- detect-node "^2.0.4"
- hpack.js "^2.1.6"
- obuf "^1.1.2"
- readable-stream "^3.0.6"
- wbuf "^1.7.3"
-
-spdy@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b"
- integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==
- dependencies:
- debug "^4.1.0"
- handle-thing "^2.0.0"
- http-deceiver "^1.2.7"
- select-hose "^2.0.0"
- spdy-transport "^3.0.0"
-
-split-string@^3.0.1, split-string@^3.0.2:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
- integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
- dependencies:
- extend-shallow "^3.0.0"
-
-sprintf-js@~1.0.2:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
- integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
-
-ssri@^6.0.1:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5"
- integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==
- dependencies:
- figgy-pudding "^3.5.1"
-
-ssri@^8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
- integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
- dependencies:
- minipass "^3.1.1"
-
-stable@^0.1.8:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
- integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
-
-stack-utils@^2.0.2:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.3.tgz#cd5f030126ff116b78ccb3c027fe302713b61277"
- integrity sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==
- dependencies:
- escape-string-regexp "^2.0.0"
-
-stackframe@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.2.0.tgz#52429492d63c62eb989804c11552e3d22e779303"
- integrity sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==
-
-state-toggle@^1.0.0:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe"
- integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==
-
-static-extend@^0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
- integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
- dependencies:
- define-property "^0.2.5"
- object-copy "^0.1.0"
-
-"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
- integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
-
-store2@^2.12.0:
- version "2.12.0"
- resolved "https://registry.yarnpkg.com/store2/-/store2-2.12.0.tgz#e1f1b7e1a59b6083b2596a8d067f6ee88fd4d3cf"
- integrity sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==
-
-storybook-addon-material-ui@^0.9.0-alpha.24:
- version "0.9.0-alpha.24"
- resolved "https://registry.yarnpkg.com/storybook-addon-material-ui/-/storybook-addon-material-ui-0.9.0-alpha.24.tgz#f7a8805040dac7e884e0600537bfce9e97a4f5a2"
- integrity sha512-Z9S06K/x2lppPofINl/ZM6a1TzeGdy8NZfWwjzyQRXzVf4/ABanhv6Zib2i6ptCxa5AWahZ1HxBqOSQZS4YIHg==
- dependencies:
- "@emotion/core" "^10.0.4"
- "@emotion/styled" "^10.0.4"
- "@usulpro/color-picker" "^1.1.3"
- global "^4.3.2"
- js-beautify "^1.8.9"
- react-inspector "^2.3.1"
-
-storybook-addon-outline@^1.4.1:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/storybook-addon-outline/-/storybook-addon-outline-1.4.1.tgz#0a1b262b9c65df43fc63308a1fdbd4283c3d9458"
- integrity sha512-Qvv9X86CoONbi+kYY78zQcTGmCgFaewYnOVR6WL7aOFJoW7TrLiIc/O4hH5X9PsEPZFqjfXEPUPENWVUQim6yw==
- dependencies:
- "@storybook/addons" "^6.3.0"
- "@storybook/api" "^6.3.0"
- "@storybook/components" "^6.3.0"
- "@storybook/core-events" "^6.3.0"
- ts-dedent "^2.1.1"
-
-stream-browserify@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
- integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
- dependencies:
- inherits "~2.0.1"
- readable-stream "^2.0.2"
-
-stream-each@^1.1.0:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
- integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
- dependencies:
- end-of-stream "^1.1.0"
- stream-shift "^1.0.0"
-
-stream-http@^2.7.2:
- version "2.8.3"
- resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
- integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
- dependencies:
- builtin-status-codes "^3.0.0"
- inherits "^2.0.1"
- readable-stream "^2.3.6"
- to-arraybuffer "^1.0.0"
- xtend "^4.0.0"
-
-stream-shift@^1.0.0:
- version "1.0.1"
- 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=
-
-string-length@^4.0.1:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a"
- integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==
- dependencies:
- char-regex "^1.0.2"
- strip-ansi "^6.0.0"
-
-string-natural-compare@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4"
- integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==
-
-string-width@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
- integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
- dependencies:
- code-point-at "^1.0.0"
- is-fullwidth-code-point "^1.0.0"
- strip-ansi "^3.0.0"
-
-"string-width@^1.0.2 || 2":
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
- integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
- dependencies:
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^4.0.0"
-
-string-width@^3.0.0, string-width@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
- integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
- dependencies:
- emoji-regex "^7.0.1"
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^5.1.0"
-
-string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
- integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
- dependencies:
- emoji-regex "^8.0.0"
- is-fullwidth-code-point "^3.0.0"
- strip-ansi "^6.0.0"
-
-"string.prototype.matchall@^4.0.0 || ^3.0.1", string.prototype.matchall@^4.0.5:
- version "4.0.5"
- resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz#59370644e1db7e4c0c045277690cf7b01203c4da"
- integrity sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.2"
- get-intrinsic "^1.1.1"
- has-symbols "^1.0.2"
- internal-slot "^1.0.3"
- regexp.prototype.flags "^1.3.1"
- side-channel "^1.0.4"
-
-string.prototype.padend@^3.0.0:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz#6858ca4f35c5268ebd5e8615e1327d55f59ee311"
- integrity sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.2"
-
-string.prototype.padstart@^3.0.0:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/string.prototype.padstart/-/string.prototype.padstart-3.1.2.tgz#f9b9ce66bedd7c06acb40ece6e34c6046e1a019d"
- integrity sha512-HDpngIP3pd0DeazrfqzuBrQZa+D2arKWquEHfGt5LzVjd+roLC3cjqVI0X8foaZz5rrrhcu8oJAQamW8on9dqw==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.18.0-next.2"
-
-string.prototype.trimend@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
- integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
-
-string.prototype.trimstart@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
- integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
-
-string_decoder@^1.0.0, string_decoder@^1.1.1:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
- integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
- dependencies:
- safe-buffer "~5.2.0"
-
-string_decoder@~1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
- integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
- dependencies:
- safe-buffer "~5.1.0"
-
-stringify-object@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
- integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
- dependencies:
- get-own-enumerable-property-symbols "^3.0.0"
- is-obj "^1.0.1"
- is-regexp "^1.0.0"
-
-strip-ansi@6.0.0, strip-ansi@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
- integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
- dependencies:
- ansi-regex "^5.0.0"
-
-strip-ansi@^3.0.0, strip-ansi@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
- integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
- dependencies:
- ansi-regex "^2.0.0"
-
-strip-ansi@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
- integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
- dependencies:
- ansi-regex "^3.0.0"
-
-strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
- integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
- dependencies:
- ansi-regex "^4.1.0"
-
-strip-bom@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
- integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
-
-strip-bom@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878"
- integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
-
-strip-comments@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-1.0.2.tgz#82b9c45e7f05873bee53f37168af930aa368679d"
- integrity sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==
- dependencies:
- babel-extract-comments "^1.0.0"
- babel-plugin-transform-object-rest-spread "^6.26.0"
-
-strip-eof@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
- integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
-
-strip-final-newline@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
- integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
-
-strip-indent@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
- integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
- dependencies:
- min-indent "^1.0.0"
-
-strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
- integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
-
-style-loader@1.3.0, style-loader@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e"
- integrity sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==
- dependencies:
- loader-utils "^2.0.0"
- schema-utils "^2.7.0"
-
-style-to-object@0.3.0, style-to-object@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46"
- integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==
- dependencies:
- inline-style-parser "0.1.1"
-
-stylehacks@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
- integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==
- dependencies:
- browserslist "^4.0.0"
- postcss "^7.0.0"
- postcss-selector-parser "^3.0.0"
-
-supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
- dependencies:
- has-flag "^3.0.0"
-
-supports-color@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
- integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
- dependencies:
- has-flag "^3.0.0"
-
-supports-color@^7.0.0, supports-color@^7.1.0:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
- integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
- dependencies:
- has-flag "^4.0.0"
-
-supports-hyperlinks@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb"
- integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==
- dependencies:
- has-flag "^4.0.0"
- supports-color "^7.0.0"
-
-svg-parser@^2.0.2:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5"
- integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==
-
-svgo@^1.0.0, svgo@^1.2.2:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
- integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
- dependencies:
- chalk "^2.4.1"
- coa "^2.0.2"
- css-select "^2.0.0"
- css-select-base-adapter "^0.1.1"
- css-tree "1.0.0-alpha.37"
- csso "^4.0.2"
- js-yaml "^3.13.1"
- mkdirp "~0.5.1"
- object.values "^1.1.0"
- sax "~1.2.4"
- stable "^0.1.8"
- unquote "~1.1.1"
- util.promisify "~1.0.0"
-
-symbol-tree@^3.2.4:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
- integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
-
-symbol.prototype.description@^1.0.0:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/symbol.prototype.description/-/symbol.prototype.description-1.0.5.tgz#d30e01263b6020fbbd2d2884a6276ce4d49ab568"
- integrity sha512-x738iXRYsrAt9WBhRCVG5BtIC3B7CUkFwbHW2zOvGtwM33s7JjrCDyq8V0zgMYVb5ymsL8+qkzzpANH63CPQaQ==
- dependencies:
- call-bind "^1.0.2"
- get-symbol-description "^1.0.0"
- has-symbols "^1.0.2"
- object.getownpropertydescriptors "^2.1.2"
-
-table@^6.0.9:
- version "6.7.1"
- resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2"
- integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==
- dependencies:
- ajv "^8.0.1"
- lodash.clonedeep "^4.5.0"
- lodash.truncate "^4.4.2"
- slice-ansi "^4.0.0"
- string-width "^4.2.0"
- strip-ansi "^6.0.0"
-
-tapable@^1.0.0, tapable@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
- integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
-
-tar@^6.0.2:
- version "6.1.11"
- resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621"
- integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==
- dependencies:
- chownr "^2.0.0"
- fs-minipass "^2.0.0"
- minipass "^3.0.0"
- minizlib "^2.1.1"
- mkdirp "^1.0.3"
- yallist "^4.0.0"
-
-telejson@^5.3.2:
- version "5.3.3"
- resolved "https://registry.yarnpkg.com/telejson/-/telejson-5.3.3.tgz#fa8ca84543e336576d8734123876a9f02bf41d2e"
- integrity sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA==
- dependencies:
- "@types/is-function" "^1.0.0"
- global "^4.4.0"
- is-function "^1.0.2"
- is-regex "^1.1.2"
- is-symbol "^1.0.3"
- isobject "^4.0.0"
- lodash "^4.17.21"
- memoizerific "^1.11.3"
-
-temp-dir@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"
- integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=
-
-tempy@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.3.0.tgz#6f6c5b295695a16130996ad5ab01a8bd726e8bf8"
- integrity sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==
- dependencies:
- temp-dir "^1.0.0"
- type-fest "^0.3.1"
- unique-string "^1.0.0"
-
-term-size@^2.1.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54"
- integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==
-
-terminal-link@^2.0.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
- integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
- dependencies:
- ansi-escapes "^4.2.1"
- supports-hyperlinks "^2.0.0"
-
-terser-webpack-plugin@4.2.3, terser-webpack-plugin@^4.2.3:
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz#28daef4a83bd17c1db0297070adc07fc8cfc6a9a"
- integrity sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==
- dependencies:
- cacache "^15.0.5"
- find-cache-dir "^3.3.1"
- jest-worker "^26.5.0"
- p-limit "^3.0.2"
- schema-utils "^3.0.0"
- serialize-javascript "^5.0.1"
- source-map "^0.6.1"
- terser "^5.3.4"
- webpack-sources "^1.4.3"
-
-terser-webpack-plugin@^1.4.3:
- version "1.4.5"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
- integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
- dependencies:
- cacache "^12.0.2"
- find-cache-dir "^2.1.0"
- is-wsl "^1.1.0"
- schema-utils "^1.0.0"
- serialize-javascript "^4.0.0"
- source-map "^0.6.1"
- terser "^4.1.2"
- webpack-sources "^1.4.0"
- worker-farm "^1.7.0"
-
-terser@^4.1.2, terser@^4.6.2, terser@^4.6.3:
- version "4.8.0"
- resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
- integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
- dependencies:
- commander "^2.20.0"
- source-map "~0.6.1"
- source-map-support "~0.5.12"
-
-terser@^5.3.4:
- version "5.7.2"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.2.tgz#d4d95ed4f8bf735cb933e802f2a1829abf545e3f"
- integrity sha512-0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw==
- dependencies:
- commander "^2.20.0"
- source-map "~0.7.2"
- source-map-support "~0.5.19"
-
-test-exclude@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
- integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
- dependencies:
- "@istanbuljs/schema" "^0.1.2"
- glob "^7.1.4"
- minimatch "^3.0.4"
-
-text-table@0.2.0, text-table@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
- integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
-
-throat@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
- integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
-
-throttle-debounce@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-3.0.1.tgz#32f94d84dfa894f786c9a1f290e7a645b6a19abb"
- integrity sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==
-
-through2@^2.0.0:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
- integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
- dependencies:
- readable-stream "~2.3.6"
- xtend "~4.0.1"
-
-thunky@^1.0.2:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
- integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
-
-timers-browserify@^2.0.4:
- version "2.0.12"
- resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
- integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
- dependencies:
- setimmediate "^1.0.4"
-
-timsort@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
- integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
-
-tiny-invariant@^1.0.2:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875"
- integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==
-
-tiny-warning@^1.0.0, tiny-warning@^1.0.2, tiny-warning@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754"
- integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==
-
-tmpl@1.0.x:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
- integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
-
-to-arraybuffer@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
- integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
-
-to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
- integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
-
-to-object-path@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
- integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
- dependencies:
- kind-of "^3.0.2"
-
-to-regex-range@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
- integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
- dependencies:
- is-number "^3.0.0"
- repeat-string "^1.6.1"
-
-to-regex-range@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
- integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
- dependencies:
- is-number "^7.0.0"
-
-to-regex@^3.0.1, to-regex@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
- integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
- dependencies:
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- regex-not "^1.0.2"
- safe-regex "^1.1.0"
-
-toggle-selection@^1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32"
- integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI=
-
-toidentifier@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
- integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
-
-tough-cookie@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4"
- integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==
- dependencies:
- psl "^1.1.33"
- punycode "^2.1.1"
- universalify "^0.1.2"
-
-tr46@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240"
- integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==
- dependencies:
- punycode "^2.1.1"
-
-trim-trailing-lines@^1.0.0:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0"
- integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==
-
-trim@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
- integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0=
-
-trough@^1.0.0:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
- integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==
-
-tryer@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8"
- integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==
-
-ts-dedent@^2.0.0, ts-dedent@^2.1.1:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5"
- integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==
-
-ts-essentials@^2.0.3:
- version "2.0.12"
- resolved "https://registry.yarnpkg.com/ts-essentials/-/ts-essentials-2.0.12.tgz#c9303f3d74f75fa7528c3d49b80e089ab09d8745"
- integrity sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==
-
-ts-pnp@1.2.0, ts-pnp@^1.1.6:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
- integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==
-
-tsconfig-paths@^3.11.0:
- version "3.11.0"
- resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz#954c1fe973da6339c78e06b03ce2e48810b65f36"
- integrity sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA==
- dependencies:
- "@types/json5" "^0.0.29"
- json5 "^1.0.1"
- minimist "^1.2.0"
- strip-bom "^3.0.0"
-
-tslib@^1.8.1:
- version "1.14.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
- integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
-
-tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.3.0:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
- integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
-
-tsutils@^3.17.1, tsutils@^3.21.0:
- version "3.21.0"
- resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
- integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
- dependencies:
- tslib "^1.8.1"
-
-tty-browserify@0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
- integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
-
-type-check@^0.4.0, type-check@~0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
- integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
- dependencies:
- prelude-ls "^1.2.1"
-
-type-check@~0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
- integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
- dependencies:
- prelude-ls "~1.1.2"
-
-type-detect@4.0.8:
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
- integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
-
-type-fest@^0.20.2:
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
- integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
-
-type-fest@^0.21.3:
- version "0.21.3"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
- integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
-
-type-fest@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1"
- integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==
-
-type-fest@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
- integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
-
-type-fest@^0.8.1:
- version "0.8.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
- integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
-
-type-is@~1.6.17, type-is@~1.6.18:
- version "1.6.18"
- resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
- integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
- dependencies:
- media-typer "0.3.0"
- mime-types "~2.1.24"
-
-type@^1.0.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0"
- integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==
-
-type@^2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/type/-/type-2.5.0.tgz#0a2e78c2e77907b252abe5f298c1b01c63f0db3d"
- integrity sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==
-
-typedarray-to-buffer@^3.1.5:
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
- integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
- dependencies:
- is-typedarray "^1.0.0"
-
-typedarray@^0.0.6:
- version "0.0.6"
- resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
- integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
-
-unbox-primitive@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
- integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
- dependencies:
- function-bind "^1.1.1"
- has-bigints "^1.0.1"
- has-symbols "^1.0.2"
- which-boxed-primitive "^1.0.2"
-
-unfetch@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be"
- integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==
-
-unherit@^1.0.4:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22"
- integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==
- dependencies:
- inherits "^2.0.0"
- xtend "^4.0.0"
-
-unicode-canonical-property-names-ecmascript@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
- integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
-
-unicode-match-property-ecmascript@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
- integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
- dependencies:
- unicode-canonical-property-names-ecmascript "^1.0.4"
- unicode-property-aliases-ecmascript "^1.0.4"
-
-unicode-match-property-value-ecmascript@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
- integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
-
-unicode-property-aliases-ecmascript@^1.0.4:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
- integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
-
-unified@9.2.0:
- version "9.2.0"
- resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8"
- integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==
- dependencies:
- bail "^1.0.0"
- extend "^3.0.0"
- is-buffer "^2.0.0"
- is-plain-obj "^2.0.0"
- trough "^1.0.0"
- vfile "^4.0.0"
-
-union-value@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
- integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
- dependencies:
- arr-union "^3.1.0"
- get-value "^2.0.6"
- is-extendable "^0.1.1"
- set-value "^2.0.1"
-
-uniq@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
- integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
-
-uniqs@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
- integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI=
-
-unique-filename@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
- integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
- dependencies:
- unique-slug "^2.0.0"
-
-unique-slug@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
- integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
- dependencies:
- imurmurhash "^0.1.4"
-
-unique-string@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
- integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=
- dependencies:
- crypto-random-string "^1.0.0"
-
-unist-builder@2.0.3, unist-builder@^2.0.0:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-2.0.3.tgz#77648711b5d86af0942f334397a33c5e91516436"
- integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==
-
-unist-util-generated@^1.0.0:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.6.tgz#5ab51f689e2992a472beb1b35f2ce7ff2f324d4b"
- integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==
-
-unist-util-is@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797"
- integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==
-
-unist-util-position@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47"
- integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==
-
-unist-util-remove-position@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc"
- integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==
- dependencies:
- unist-util-visit "^2.0.0"
-
-unist-util-remove@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-2.1.0.tgz#b0b4738aa7ee445c402fda9328d604a02d010588"
- integrity sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==
- dependencies:
- unist-util-is "^4.0.0"
-
-unist-util-stringify-position@^2.0.0:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da"
- integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==
- dependencies:
- "@types/unist" "^2.0.2"
-
-unist-util-visit-parents@^3.0.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6"
- integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==
- dependencies:
- "@types/unist" "^2.0.0"
- unist-util-is "^4.0.0"
-
-unist-util-visit@2.0.3, unist-util-visit@^2.0.0:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c"
- integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==
- dependencies:
- "@types/unist" "^2.0.0"
- unist-util-is "^4.0.0"
- unist-util-visit-parents "^3.0.0"
-
-universalify@^0.1.0, universalify@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
- integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
-
-universalify@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
- integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
-
-unpipe@1.0.0, unpipe@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
- integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
-
-unquote@^1.1.0, unquote@~1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
- integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
-
-unset-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
- integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
- dependencies:
- has-value "^0.3.1"
- isobject "^3.0.0"
-
-upath@^1.1.1, upath@^1.1.2, upath@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
- integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
-
-uri-js@^4.2.2:
- version "4.4.1"
- resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
- integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
- dependencies:
- punycode "^2.1.0"
-
-urix@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
- integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
-
-url-loader@4.1.1, url-loader@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2"
- integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==
- dependencies:
- loader-utils "^2.0.0"
- mime-types "^2.1.27"
- schema-utils "^3.0.0"
-
-url-parse@^1.4.3, url-parse@^1.5.3:
- version "1.5.3"
- resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.3.tgz#71c1303d38fb6639ade183c2992c8cc0686df862"
- integrity sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==
- dependencies:
- querystringify "^2.1.1"
- requires-port "^1.0.0"
-
-url@^0.11.0:
- version "0.11.0"
- resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
- integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
- dependencies:
- punycode "1.3.2"
- querystring "0.2.0"
-
-use-composed-ref@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.1.0.tgz#9220e4e94a97b7b02d7d27eaeab0b37034438bbc"
- integrity sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==
- dependencies:
- ts-essentials "^2.0.3"
-
-use-isomorphic-layout-effect@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.1.tgz#7bb6589170cd2987a152042f9084f9effb75c225"
- integrity sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==
-
-use-latest@^1.0.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/use-latest/-/use-latest-1.2.0.tgz#a44f6572b8288e0972ec411bdd0840ada366f232"
- integrity sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==
- dependencies:
- use-isomorphic-layout-effect "^1.0.0"
-
-use@^3.1.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
- integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
-
-util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
- integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
-
-util.promisify@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
- integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
- dependencies:
- define-properties "^1.1.2"
- object.getownpropertydescriptors "^2.0.3"
-
-util.promisify@~1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
- integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.2"
- has-symbols "^1.0.1"
- object.getownpropertydescriptors "^2.1.0"
-
-util@0.10.3:
- version "0.10.3"
- resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
- integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
- dependencies:
- inherits "2.0.1"
-
-util@^0.11.0:
- version "0.11.1"
- resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
- integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
- dependencies:
- inherits "2.0.3"
-
-utila@~0.4:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
- integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=
-
-utils-merge@1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
- integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
-
-uuid-browser@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/uuid-browser/-/uuid-browser-3.1.0.tgz#0f05a40aef74f9e5951e20efbf44b11871e56410"
- integrity sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=
-
-uuid@^3.3.2, uuid@^3.4.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
- integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
-
-uuid@^8.3.0:
- version "8.3.2"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
- integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
-
-v8-compile-cache@^2.0.3:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
- integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
-
-v8-to-istanbul@^7.0.0:
- version "7.1.2"
- resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1"
- integrity sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==
- dependencies:
- "@types/istanbul-lib-coverage" "^2.0.1"
- convert-source-map "^1.6.0"
- source-map "^0.7.3"
-
-v8-to-istanbul@^8.0.0:
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.0.0.tgz#4229f2a99e367f3f018fa1d5c2b8ec684667c69c"
- integrity sha512-LkmXi8UUNxnCC+JlH7/fsfsKr5AU110l+SYGJimWNkWhxbN5EyeOtm1MJ0hhvqMMOhGwBj1Fp70Yv9i+hX0QAg==
- dependencies:
- "@types/istanbul-lib-coverage" "^2.0.1"
- convert-source-map "^1.6.0"
- source-map "^0.7.3"
-
-validate-npm-package-license@^3.0.1:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
- integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
- dependencies:
- spdx-correct "^3.0.0"
- spdx-expression-parse "^3.0.0"
-
-value-equal@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c"
- integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==
-
-vary@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
- integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
-
-vendors@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e"
- integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==
-
-vfile-location@^3.0.0, vfile-location@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.2.0.tgz#d8e41fbcbd406063669ebf6c33d56ae8721d0f3c"
- integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==
-
-vfile-message@^2.0.0:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a"
- integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==
- dependencies:
- "@types/unist" "^2.0.0"
- unist-util-stringify-position "^2.0.0"
-
-vfile@^4.0.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624"
- integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==
- dependencies:
- "@types/unist" "^2.0.0"
- is-buffer "^2.0.0"
- unist-util-stringify-position "^2.0.0"
- vfile-message "^2.0.0"
-
-vm-browserify@^1.0.1:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
- integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
-
-w3c-hr-time@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
- integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
- dependencies:
- browser-process-hrtime "^1.0.0"
-
-w3c-xmlserializer@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a"
- integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==
- dependencies:
- xml-name-validator "^3.0.0"
-
-walker@^1.0.7, walker@~1.0.5:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
- integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
- dependencies:
- makeerror "1.0.x"
-
-warning@^4.0.2, warning@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
- integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==
- dependencies:
- loose-envify "^1.0.0"
-
-watchpack-chokidar2@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957"
- integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==
- dependencies:
- chokidar "^2.1.8"
-
-watchpack@^1.7.4:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453"
- integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==
- dependencies:
- graceful-fs "^4.1.2"
- neo-async "^2.5.0"
- optionalDependencies:
- chokidar "^3.4.1"
- watchpack-chokidar2 "^2.0.1"
-
-wbuf@^1.1.0, wbuf@^1.7.3:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df"
- integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==
- dependencies:
- minimalistic-assert "^1.0.0"
-
-web-namespaces@^1.0.0:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec"
- integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==
-
-web-vitals@^0.2.4:
- version "0.2.4"
- resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-0.2.4.tgz#ec3df43c834a207fd7cdefd732b2987896e08511"
- integrity sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==
-
-webidl-conversions@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
- integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
-
-webidl-conversions@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514"
- integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
-
-webpack-dev-middleware@^3.7.2, webpack-dev-middleware@^3.7.3:
- version "3.7.3"
- resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz#0639372b143262e2b84ab95d3b91a7597061c2c5"
- integrity sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==
- dependencies:
- memory-fs "^0.4.1"
- mime "^2.4.4"
- mkdirp "^0.5.1"
- range-parser "^1.2.1"
- webpack-log "^2.0.0"
-
-webpack-dev-server@3.11.1:
- version "3.11.1"
- resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz#c74028bf5ba8885aaf230e48a20e8936ab8511f0"
- integrity sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==
- dependencies:
- ansi-html "0.0.7"
- bonjour "^3.5.0"
- chokidar "^2.1.8"
- compression "^1.7.4"
- connect-history-api-fallback "^1.6.0"
- debug "^4.1.1"
- del "^4.1.1"
- express "^4.17.1"
- html-entities "^1.3.1"
- http-proxy-middleware "0.19.1"
- import-local "^2.0.0"
- internal-ip "^4.3.0"
- ip "^1.1.5"
- is-absolute-url "^3.0.3"
- killable "^1.0.1"
- loglevel "^1.6.8"
- opn "^5.5.0"
- p-retry "^3.0.1"
- portfinder "^1.0.26"
- schema-utils "^1.0.0"
- selfsigned "^1.10.8"
- semver "^6.3.0"
- serve-index "^1.9.1"
- sockjs "^0.3.21"
- sockjs-client "^1.5.0"
- spdy "^4.0.2"
- strip-ansi "^3.0.1"
- supports-color "^6.1.0"
- url "^0.11.0"
- webpack-dev-middleware "^3.7.2"
- webpack-log "^2.0.0"
- ws "^6.2.1"
- yargs "^13.3.2"
-
-webpack-filter-warnings-plugin@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/webpack-filter-warnings-plugin/-/webpack-filter-warnings-plugin-1.2.1.tgz#dc61521cf4f9b4a336fbc89108a75ae1da951cdb"
- integrity sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==
-
-webpack-hot-middleware@^2.25.0:
- version "2.25.0"
- resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706"
- integrity sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA==
- dependencies:
- ansi-html "0.0.7"
- html-entities "^1.2.0"
- querystring "^0.2.0"
- strip-ansi "^3.0.0"
-
-webpack-log@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
- integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
- dependencies:
- ansi-colors "^3.0.0"
- uuid "^3.3.2"
-
-webpack-manifest-plugin@2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz#19ca69b435b0baec7e29fbe90fb4015de2de4f16"
- integrity sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==
- dependencies:
- fs-extra "^7.0.0"
- lodash ">=3.5 <5"
- object.entries "^1.1.0"
- tapable "^1.0.0"
-
-webpack-sources@^1.1.0, webpack-sources@^1.3.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
- integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
- dependencies:
- source-list-map "^2.0.0"
- source-map "~0.6.1"
-
-webpack-sources@^2.2.0:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.1.tgz#570de0af163949fe272233c2cefe1b56f74511fd"
- integrity sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==
- dependencies:
- source-list-map "^2.0.1"
- source-map "^0.6.1"
-
-webpack-virtual-modules@^0.2.2:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz#20863dc3cb6bb2104729fff951fbe14b18bd0299"
- integrity sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==
- dependencies:
- debug "^3.0.0"
-
-webpack@4:
- version "4.46.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542"
- integrity sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-module-context" "1.9.0"
- "@webassemblyjs/wasm-edit" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
- acorn "^6.4.1"
- ajv "^6.10.2"
- ajv-keywords "^3.4.1"
- chrome-trace-event "^1.0.2"
- enhanced-resolve "^4.5.0"
- eslint-scope "^4.0.3"
- json-parse-better-errors "^1.0.2"
- loader-runner "^2.4.0"
- loader-utils "^1.2.3"
- memory-fs "^0.4.1"
- micromatch "^3.1.10"
- mkdirp "^0.5.3"
- neo-async "^2.6.1"
- node-libs-browser "^2.2.1"
- schema-utils "^1.0.0"
- tapable "^1.1.3"
- terser-webpack-plugin "^1.4.3"
- watchpack "^1.7.4"
- webpack-sources "^1.4.1"
-
-webpack@4.44.2:
- version "4.44.2"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.2.tgz#6bfe2b0af055c8b2d1e90ed2cd9363f841266b72"
- integrity sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-module-context" "1.9.0"
- "@webassemblyjs/wasm-edit" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
- acorn "^6.4.1"
- ajv "^6.10.2"
- ajv-keywords "^3.4.1"
- chrome-trace-event "^1.0.2"
- enhanced-resolve "^4.3.0"
- eslint-scope "^4.0.3"
- json-parse-better-errors "^1.0.2"
- loader-runner "^2.4.0"
- loader-utils "^1.2.3"
- memory-fs "^0.4.1"
- micromatch "^3.1.10"
- mkdirp "^0.5.3"
- neo-async "^2.6.1"
- node-libs-browser "^2.2.1"
- schema-utils "^1.0.0"
- tapable "^1.1.3"
- terser-webpack-plugin "^1.4.3"
- watchpack "^1.7.4"
- webpack-sources "^1.4.1"
-
-websocket-driver@>=0.5.1, websocket-driver@^0.7.4:
- version "0.7.4"
- resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760"
- integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==
- dependencies:
- http-parser-js ">=0.5.1"
- safe-buffer ">=5.1.0"
- websocket-extensions ">=0.1.1"
-
-websocket-extensions@>=0.1.1:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
- integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
-
-whatwg-encoding@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
- integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
- dependencies:
- iconv-lite "0.4.24"
-
-whatwg-fetch@^3.4.1:
- version "3.6.2"
- resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c"
- integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==
-
-whatwg-mimetype@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
- integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
-
-whatwg-url@^8.0.0, whatwg-url@^8.5.0:
- version "8.7.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77"
- integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==
- dependencies:
- lodash "^4.7.0"
- tr46 "^2.1.0"
- webidl-conversions "^6.1.0"
-
-which-boxed-primitive@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
- integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
- dependencies:
- is-bigint "^1.0.1"
- is-boolean-object "^1.1.0"
- is-number-object "^1.0.4"
- is-string "^1.0.5"
- is-symbol "^1.0.3"
-
-which-module@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
- integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
-
-which@^1.2.9, which@^1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
- integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
- dependencies:
- isexe "^2.0.0"
-
-which@^2.0.1, which@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
- integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
- dependencies:
- isexe "^2.0.0"
-
-wide-align@^1.1.0:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
- integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
- dependencies:
- string-width "^1.0.2 || 2"
-
-widest-line@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca"
- integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==
- dependencies:
- string-width "^4.0.0"
-
-word-wrap@^1.2.3, word-wrap@~1.2.3:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
- integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
-
-workbox-background-sync@^5.1.3, workbox-background-sync@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz#5ae0bbd455f4e9c319e8d827c055bb86c894fd12"
- integrity sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==
- dependencies:
- workbox-core "^5.1.4"
-
-workbox-broadcast-update@^5.1.3, workbox-broadcast-update@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz#0eeb89170ddca7f6914fa3523fb14462891f2cfc"
- integrity sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==
- dependencies:
- workbox-core "^5.1.4"
-
-workbox-build@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-5.1.4.tgz#23d17ed5c32060c363030c8823b39d0eabf4c8c7"
- integrity sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==
- dependencies:
- "@babel/core" "^7.8.4"
- "@babel/preset-env" "^7.8.4"
- "@babel/runtime" "^7.8.4"
- "@hapi/joi" "^15.1.0"
- "@rollup/plugin-node-resolve" "^7.1.1"
- "@rollup/plugin-replace" "^2.3.1"
- "@surma/rollup-plugin-off-main-thread" "^1.1.1"
- common-tags "^1.8.0"
- fast-json-stable-stringify "^2.1.0"
- fs-extra "^8.1.0"
- glob "^7.1.6"
- lodash.template "^4.5.0"
- pretty-bytes "^5.3.0"
- rollup "^1.31.1"
- rollup-plugin-babel "^4.3.3"
- rollup-plugin-terser "^5.3.1"
- source-map "^0.7.3"
- source-map-url "^0.4.0"
- stringify-object "^3.3.0"
- strip-comments "^1.0.2"
- tempy "^0.3.0"
- upath "^1.2.0"
- workbox-background-sync "^5.1.4"
- workbox-broadcast-update "^5.1.4"
- workbox-cacheable-response "^5.1.4"
- workbox-core "^5.1.4"
- workbox-expiration "^5.1.4"
- workbox-google-analytics "^5.1.4"
- workbox-navigation-preload "^5.1.4"
- workbox-precaching "^5.1.4"
- workbox-range-requests "^5.1.4"
- workbox-routing "^5.1.4"
- workbox-strategies "^5.1.4"
- workbox-streams "^5.1.4"
- workbox-sw "^5.1.4"
- workbox-window "^5.1.4"
-
-workbox-cacheable-response@^5.1.3, workbox-cacheable-response@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz#9ff26e1366214bdd05cf5a43da9305b274078a54"
- integrity sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==
- dependencies:
- workbox-core "^5.1.4"
-
-workbox-core@^5.1.3, workbox-core@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-core/-/workbox-core-5.1.4.tgz#8bbfb2362ecdff30e25d123c82c79ac65d9264f4"
- integrity sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==
-
-workbox-expiration@^5.1.3, workbox-expiration@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-5.1.4.tgz#92b5df461e8126114943a3b15c55e4ecb920b163"
- integrity sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==
- dependencies:
- workbox-core "^5.1.4"
-
-workbox-google-analytics@^5.1.3, workbox-google-analytics@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz#b3376806b1ac7d7df8418304d379707195fa8517"
- integrity sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==
- dependencies:
- workbox-background-sync "^5.1.4"
- workbox-core "^5.1.4"
- workbox-routing "^5.1.4"
- workbox-strategies "^5.1.4"
-
-workbox-navigation-preload@^5.1.3, workbox-navigation-preload@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz#30d1b720d26a05efc5fa11503e5cc1ed5a78902a"
- integrity sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==
- dependencies:
- workbox-core "^5.1.4"
-
-workbox-precaching@^5.1.3, workbox-precaching@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-5.1.4.tgz#874f7ebdd750dd3e04249efae9a1b3f48285fe6b"
- integrity sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==
- dependencies:
- workbox-core "^5.1.4"
-
-workbox-range-requests@^5.1.3, workbox-range-requests@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz#7066a12c121df65bf76fdf2b0868016aa2bab859"
- integrity sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==
- dependencies:
- workbox-core "^5.1.4"
-
-workbox-routing@^5.1.3, workbox-routing@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-5.1.4.tgz#3e8cd86bd3b6573488d1a2ce7385e547b547e970"
- integrity sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==
- dependencies:
- workbox-core "^5.1.4"
-
-workbox-strategies@^5.1.3, workbox-strategies@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-5.1.4.tgz#96b1418ccdfde5354612914964074d466c52d08c"
- integrity sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==
- dependencies:
- workbox-core "^5.1.4"
- workbox-routing "^5.1.4"
-
-workbox-streams@^5.1.3, workbox-streams@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-5.1.4.tgz#05754e5e3667bdc078df2c9315b3f41210d8cac0"
- integrity sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==
- dependencies:
- workbox-core "^5.1.4"
- workbox-routing "^5.1.4"
-
-workbox-sw@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-5.1.4.tgz#2bb34c9f7381f90d84cef644816d45150011d3db"
- integrity sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==
-
-workbox-webpack-plugin@5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz#7bfe8c16e40fe9ed8937080ac7ae9c8bde01e79c"
- integrity sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==
- dependencies:
- "@babel/runtime" "^7.5.5"
- fast-json-stable-stringify "^2.0.0"
- source-map-url "^0.4.0"
- upath "^1.1.2"
- webpack-sources "^1.3.0"
- workbox-build "^5.1.4"
-
-workbox-window@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-5.1.4.tgz#2740f7dea7f93b99326179a62f1cc0ca2c93c863"
- integrity sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==
- dependencies:
- workbox-core "^5.1.4"
-
-worker-farm@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
- integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
- dependencies:
- errno "~0.1.7"
-
-worker-rpc@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5"
- integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==
- dependencies:
- microevent.ts "~0.1.1"
-
-wrap-ansi@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
- integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
- dependencies:
- ansi-styles "^3.2.0"
- string-width "^3.0.0"
- strip-ansi "^5.0.0"
-
-wrap-ansi@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
- integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
- dependencies:
- ansi-styles "^4.0.0"
- string-width "^4.1.0"
- strip-ansi "^6.0.0"
-
-wrap-ansi@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
- integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
- dependencies:
- ansi-styles "^4.0.0"
- string-width "^4.1.0"
- strip-ansi "^6.0.0"
-
-wrappy@1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
- integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
-
-write-file-atomic@^3.0.0:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
- integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
- dependencies:
- imurmurhash "^0.1.4"
- is-typedarray "^1.0.0"
- signal-exit "^3.0.2"
- typedarray-to-buffer "^3.1.5"
-
-ws@^6.2.1:
- version "6.2.2"
- resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e"
- integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==
- dependencies:
- async-limiter "~1.0.0"
-
-ws@^7.4.6:
- version "7.5.5"
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881"
- integrity sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==
-
-xml-name-validator@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
- integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
-
-xmlchars@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
- integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
-
-xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
- integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
-
-y18n@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
- integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
-
-y18n@^5.0.5:
- version "5.0.8"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
- integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
-
-yallist@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
- integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
-
-yallist@^3.0.2:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
- integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
-
-yallist@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
- integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
-
-yaml@^1.10.0, yaml@^1.7.2:
- version "1.10.2"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
- integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
-
-yargs-parser@^13.1.2:
- version "13.1.2"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
- integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
- dependencies:
- camelcase "^5.0.0"
- decamelize "^1.2.0"
-
-yargs-parser@^18.1.2:
- version "18.1.3"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
- integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
- dependencies:
- camelcase "^5.0.0"
- decamelize "^1.2.0"
-
-yargs-parser@^20.2.2, yargs-parser@^20.2.7:
- version "20.2.9"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
- integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
-
-yargs@^13.3.2:
- version "13.3.2"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
- integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
- dependencies:
- cliui "^5.0.0"
- find-up "^3.0.0"
- get-caller-file "^2.0.1"
- require-directory "^2.1.1"
- require-main-filename "^2.0.0"
- set-blocking "^2.0.0"
- string-width "^3.0.0"
- which-module "^2.0.0"
- y18n "^4.0.0"
- yargs-parser "^13.1.2"
-
-yargs@^15.4.1:
- version "15.4.1"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
- integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
- dependencies:
- cliui "^6.0.0"
- decamelize "^1.2.0"
- find-up "^4.1.0"
- get-caller-file "^2.0.1"
- require-directory "^2.1.1"
- require-main-filename "^2.0.0"
- set-blocking "^2.0.0"
- string-width "^4.2.0"
- which-module "^2.0.0"
- y18n "^4.0.0"
- yargs-parser "^18.1.2"
-
-yargs@^16.2.0:
- version "16.2.0"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
- integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
- dependencies:
- cliui "^7.0.2"
- escalade "^3.1.1"
- get-caller-file "^2.0.5"
- require-directory "^2.1.1"
- string-width "^4.2.0"
- y18n "^5.0.5"
- yargs-parser "^20.2.2"
-
-yocto-queue@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
- integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
-
-zwitch@^1.0.0:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920"
- integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==