diff --git a/.gitignore b/.gitignore index 0134f1a3e0..11c27cf48e 100644 --- a/.gitignore +++ b/.gitignore @@ -26,7 +26,6 @@ lib/ public/ node_modules/ tmp/ -_gh-pages/ # Custom *.map @@ -44,11 +43,12 @@ jest.config.js prettier.config.js tsconfig.eslint.json tsconfig.json -!demo/tsconfig.json tsconfig.options.json *.tsbuildinfo webpack.config.js -# Ignore npm lock files, always use yarn.loock instead +# Lock files, libs should not have lock files npm-shrinkwrap.json package-lock.json +# disable to provide more stability for the ci builds +# yarn.lock diff --git a/docs/storybook.md b/docs/storybook.md index 63a37d23ea..1ec329c26b 100644 --- a/docs/storybook.md +++ b/docs/storybook.md @@ -5,6 +5,14 @@ You can demo your changes by running the storybook demo locally with the followi ```sh yarn install yarn build +cd packages/superset-ui-demo +yarn storybook:run +``` + +Alternatively, you can demo your changes by using the following command while in +`packages/superset-ui-demo`: + +```sh yarn storybook ``` diff --git a/lerna.json b/lerna.json index 7c7c971314..5e32f599cd 100644 --- a/lerna.json +++ b/lerna.json @@ -2,8 +2,7 @@ "lerna": "3.2.1", "npmClient": "yarn", "packages": [ - "packages/*", - "plugins/*" + "packages/*" ], "useWorkspaces": true, "version": "0.12.12" diff --git a/package.json b/package.json index 8eb09ef151..0d232a2b3a 100644 --- a/package.json +++ b/package.json @@ -9,10 +9,7 @@ "babel:cjs": "nimbus babel --clean --workspaces=\"@superset-ui/!(demo|generator-superset)\"", "babel:esm": "nimbus babel --clean --workspaces=\"@superset-ui/!(demo|generator-superset)\" --esm", "build:assets": "node ./scripts/buildAssets.js", - "demo": "cd packages/demo && yarn demo:build", - "storybook": "cd packages/demo && yarn storybook", - "sb": "yarn storybook", - "clean": "rm -rf ./{packages,plugins}/**/{lib,esm}", + "clean": "rm -rf ./packages/**/{lib,esm}", "commit": "superset-commit", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 10", "format": "yarn prettier --write", @@ -45,12 +42,12 @@ ], "license": "Apache-2.0", "devDependencies": { - "@airbnb/config-babel": "^3.1.0", - "@airbnb/config-eslint": "^3.1.0", - "@airbnb/config-jest": "^3.0.1", - "@airbnb/config-prettier": "^3.1.0", - "@airbnb/config-typescript": "^3.0.1", - "@airbnb/nimbus": "^3.1.1", + "@airbnb/config-babel": "^2.1.3", + "@airbnb/config-eslint": "^2.1.3", + "@airbnb/config-jest": "^2.1.3", + "@airbnb/config-prettier": "^2.0.4", + "@airbnb/config-typescript": "^2.1.2", + "@airbnb/nimbus": "^2.1.3", "@superset-ui/commit-config": "^0.0.9", "@types/enzyme": "^3.10.3", "@types/jest": "^25.1.1", @@ -62,13 +59,12 @@ "fast-glob": "^3.0.1", "fs-extra": "^8.0.1", "husky": "^4.2.1", - "identity-obj-proxy": "^3.0.0", "jest-mock-console": "^1.0.0", "lerna": "^3.15.0", "lint-staged": "^10.0.3", - "react": "^16.9.0", + "react-test-renderer": "^16.9.0", "react-dom": "^16.9.0", - "react-test-renderer": "^16.9.0" + "react": "^16.9.0" }, "engines": { "node": ">=10.10.0", @@ -76,8 +72,7 @@ "yarn": ">=1.13.0" }, "workspaces": [ - "./packages/*", - "./plugins/*" + "./packages/*" ], "browserslist": [ "last 3 chrome versions", @@ -105,10 +100,6 @@ "globals": { "caches": true }, - "moduleNameMapper": { - "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "/__mocks__/fileMock.js", - "\\.(css|less)$": "identity-obj-proxy" - }, "timers": "real", "setupFilesAfterEnv": [ "@airbnb/config-jest/enzyme" @@ -128,13 +119,7 @@ } ] }, - "prettier": { - "arrowParens": "avoid" - }, "eslint": { - "rules": { - "arrow-parens": ["warn", "as-needed"] - }, "overrides": [ { "files": "./packages/generator-superset/**/*.test.{js,jsx,ts,tsx}", @@ -156,27 +141,14 @@ "files": "*.{js,jsx,ts,tsx}", "rules": { "react/jsx-no-literals": "off", - "@typescript-eslint/no-explicit-any": [ - "warn", - { - "fixToUnknown": false - } - ] - } - }, - { - "files": "./scripts/*", - "env": { - "node": true + "@typescript-eslint/no-explicit-any": ["warn", { "fixToUnknown": false }] } } ] }, "typescript": { "compilerOptions": { - "emitDeclarationOnly": true, - "composite": true, - "resolveJsonModule": true + "emitDeclarationOnly": true } } }, @@ -187,7 +159,7 @@ } }, "lint-staged": { - "./{packages,plugins}/*/{src,test,storybook}/**/*.{js,jsx,ts,tsx,json,md}": [ + "./packages/*/{src,test,storybook}/**/*.{js,jsx,ts,tsx,json,md}": [ "yarn prettier --write", "git add" ] diff --git a/packages/demo/.storybook/main.js b/packages/demo/.storybook/main.js deleted file mode 100644 index 9dfba2d1c8..0000000000 --- a/packages/demo/.storybook/main.js +++ /dev/null @@ -1,48 +0,0 @@ -const path = require('path'); -const { lstatSync, readdirSync } = require('fs'); - -// find @superset-ui packages -const basePath = path.resolve(__dirname, '../../../node_modules/@superset-ui'); -const packages = readdirSync(basePath).filter(name => { - const stat = lstatSync(path.join(basePath, name)); - return stat.isSymbolicLink(); -}); - -module.exports = { - addons: [ - '@storybook/preset-typescript', - '@storybook/addon-actions/register', - '@storybook/addon-knobs/register', - 'storybook-addon-jsx/register', - '@storybook/addon-links/register', - ], - stories: [ - '../storybook/stories/**/*Stories.[tj]sx', - ], - webpackFinal: config => { - config.module.rules.push({ - test: /\.tsx?$/, - use: [ - { - loader: require.resolve('ts-loader'), - }, - ], - }); - - config.resolve.extensions.push('.ts', '.tsx'); - // let webpack know where to find the source code - Object.assign(config.resolve.alias, { - ...packages.reduce( - (acc, name) => ({ - ...acc, - [`@superset-ui/${name}$`]: path.join(basePath, name, 'src'), - }), - {}, - ), - }); - - config.stats = 'errors-warnings'; - - return config; - }, -}; diff --git a/packages/demo/.storybook/storybook.css b/packages/demo/.storybook/storybook.css deleted file mode 100644 index 1ad4816ceb..0000000000 --- a/packages/demo/.storybook/storybook.css +++ /dev/null @@ -1,24 +0,0 @@ -html, -body, -#root { - height: 100%; - font-family: BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif; - font-weight: 200; - color: #484848; -} -#root > div { - padding: 8px; -} - -#root > div.superset-body { - background: #f5f5f5; - padding: 16px; - min-height: 100%; -} -#root > div.superset-body .panel { - margin-bottom: 0; -} - -code { - background: none; -} diff --git a/packages/demo/storybook/stories/plugins/big-number/BigNumber/BigNunberStories.tsx b/packages/demo/storybook/stories/plugins/big-number/BigNumber/BigNunberStories.tsx deleted file mode 100644 index 534a159e76..0000000000 --- a/packages/demo/storybook/stories/plugins/big-number/BigNumber/BigNunberStories.tsx +++ /dev/null @@ -1,114 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import React from 'react'; -import { SuperChart } from '@superset-ui/chart'; -import { BigNumberChartPlugin } from '@superset-ui/legacy-preset-chart-big-number'; -import testData from './data'; - -new BigNumberChartPlugin().configure({ key: 'big-number' }).register(); - -const TIME_COLUMN = '__timestamp'; - -const formData = { - colorPicker: { - r: 0, - g: 122, - b: 135, - a: 1, - }, - compareLag: 1, - compareSuffix: 'over 10Y', - metric: 'sum__SP_POP_TOTL', - showTrendLine: true, - startYAxisAtZero: true, - vizType: 'big_number', - yAxisFormat: '.3s', -}; - -/** - * Add null values to trendline data - * @param data input data - */ -function withNulls(origData: object[], nullPosition: number = 3) { - const data = [...origData]; - data[nullPosition] = { - ...data[nullPosition], - sum__SP_POP_TOTL: null, - }; - return data; -} - -export default { - title: 'Legacy Preset|big-number', -}; - -export const basicWithTrendline = () => ( - -); - -export const nullInTheMiddle = () => ( - -); - -export const fixedRange = () => ( - -); - -export const noFixedRange = () => ( - -); diff --git a/packages/demo/storybook/stories/plugins/big-number/BigNumber/data.ts b/packages/demo/storybook/stories/plugins/big-number/BigNumber/data.ts deleted file mode 100644 index cf0c78bb08..0000000000 --- a/packages/demo/storybook/stories/plugins/big-number/BigNumber/data.ts +++ /dev/null @@ -1,59 +0,0 @@ -/* eslint-disable sort-keys */ -export default [ - { - __timestamp: 1388534400000.0, - sum__SP_POP_TOTL: 7237260256.0, - }, - { - __timestamp: 1356998400000.0, - sum__SP_POP_TOTL: 7151135481.0, - }, - { - __timestamp: 1325376000000.0, - sum__SP_POP_TOTL: 7066007165.0, - }, - { - __timestamp: 1293840000000.0, - sum__SP_POP_TOTL: 6984252419.0, - }, - { - __timestamp: 1262304000000.0, - sum__SP_POP_TOTL: 6901110512.0, - }, - { - __timestamp: 1230768000000.0, - sum__SP_POP_TOTL: 6818457192.0, - }, - { - __timestamp: 1199145600000.0, - sum__SP_POP_TOTL: 6735914031.0, - }, - { - __timestamp: 1167609600000.0, - sum__SP_POP_TOTL: 6653571302.0, - }, - { - __timestamp: 1136073600000.0, - sum__SP_POP_TOTL: 6572596462.0, - }, - { - __timestamp: 1104537600000.0, - sum__SP_POP_TOTL: 6491857539.0, - }, - { - __timestamp: 1072915200000.0, - sum__SP_POP_TOTL: 6411615629.0, - }, - { - __timestamp: 1041379200000.0, - sum__SP_POP_TOTL: 6331766837.0, - }, - { - __timestamp: 1009843200000.0, - sum__SP_POP_TOTL: 6252469127.0, - }, - { - __timestamp: 978307200000.0, - sum__SP_POP_TOTL: 617333941.0, - }, -]; diff --git a/packages/demo/storybook/stories/plugins/big-number/BigNumberTotal/BigNumberTotalStories.tsx b/packages/demo/storybook/stories/plugins/big-number/BigNumberTotal/BigNumberTotalStories.tsx deleted file mode 100644 index 9707b9b83f..0000000000 --- a/packages/demo/storybook/stories/plugins/big-number/BigNumberTotal/BigNumberTotalStories.tsx +++ /dev/null @@ -1,58 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import React from 'react'; -import { SuperChart } from '@superset-ui/chart'; -import { BigNumberTotalChartPlugin } from '@superset-ui/legacy-preset-chart-big-number'; -import data from './data'; - -new BigNumberTotalChartPlugin().configure({ key: 'big-number-total' }).register(); - -export default { - title: 'Legacy Preset|big-number', -}; - -export const totalBasic = () => ( - -); - -export const totalNoData = () => ( - -); diff --git a/packages/demo/storybook/stories/plugins/big-number/BigNumberTotal/data.ts b/packages/demo/storybook/stories/plugins/big-number/BigNumberTotal/data.ts deleted file mode 100644 index 9196307688..0000000000 --- a/packages/demo/storybook/stories/plugins/big-number/BigNumberTotal/data.ts +++ /dev/null @@ -1,5 +0,0 @@ -export default [ - { - sum__num: 32546308, - }, -]; diff --git a/packages/demo/storybook/stories/plugins/table/TableStories.tsx b/packages/demo/storybook/stories/plugins/table/TableStories.tsx deleted file mode 100644 index df58022d2c..0000000000 --- a/packages/demo/storybook/stories/plugins/table/TableStories.tsx +++ /dev/null @@ -1,155 +0,0 @@ -import React, { useState } from 'react'; -import { SuperChart } from '@superset-ui/chart'; -import { Props as SuperChartProps } from '@superset-ui/chart/src/components/SuperChart'; -import TableChartPlugin from '@superset-ui/legacy-plugin-chart-table'; -import data, { birthNames } from './data'; -import 'bootstrap/dist/css/bootstrap.min.css'; - -new TableChartPlugin().configure({ key: 'table' }).register(); - -function paginated(props_: SuperChartProps, pageSize = 50) { - const props = { ...props_ }; - if (props.formData) { - props.formData = { - ...props.formData, - page_length: pageSize, - }; - } - if (props.queryData?.form_data) { - props.queryData.form_data = { - ...props.queryData.form_data, - page_length: pageSize, - }; - } - return { - ...props, - }; -} - -function adjustNumCols(props: SuperChartProps, numCols = 7) { - const newProps = { ...props }; - if (props.queryData) { - const { columns } = props.queryData.data; - const curSize = columns.length; - const newColumns = [...new Array(numCols)].map((_, i) => { - return columns[i % curSize]; - }); - newProps.queryData = { - ...props.queryData, - data: { - ...props.queryData.data, - columns: newColumns, - }, - }; - } - return newProps; -} - -/** - * Load sample data for testing - * @param props the original props passed to SuperChart - * @param pageSize number of records perpage - * @param targetSize the target total number of records - */ -function loadData(props: SuperChartProps, pageSize = 50, targetSize = 2042) { - if (!props.queryData) return props; - const data = props.queryData && props.queryData.data; - if (data.records.length > 0) { - while (data.records.length < targetSize) { - const records = data.records; - data.records = records.concat(records).slice(0, targetSize); - } - } - props.height = window.innerHeight - 130; - return paginated(props, pageSize); -} - -export default { - title: 'Legacy Plugin|table', -}; - -export const basic = () => ( - -); - -export const bigTable = () => { - const initialProps = loadData(birthNames); - const [chartProps, setChartProps] = useState(initialProps); - - const updatePageSize = (size: number) => { - setChartProps(paginated(initialProps, size)); - }; - const updateNumCols = (numCols: number) => { - setChartProps(adjustNumCols(initialProps, numCols)); - }; - - return ( -
-
-
-
- Initial page size:{' '} -
- {[10, 25, 40, 50, 100, -1].map((pageSize) => { - return ( - - ); - })} -
-
-
- Number of columns:{' '} -
- {[1, 3, 5, 7, 9].map((numCols) => { - return ( - - ); - })} -
-
-
-
- -
-
-
- ); -}; diff --git a/packages/demo/storybook/stories/plugins/table/birthNames.json b/packages/demo/storybook/stories/plugins/table/birthNames.json deleted file mode 100644 index 9069799975..0000000000 --- a/packages/demo/storybook/stories/plugins/table/birthNames.json +++ /dev/null @@ -1,24992 +0,0 @@ -{ - "disableErrorBoundary": true, - "id": "chart-id-60", - "className": "superset-chart-table", - "chartType": "table", - "width": 932, - "height": 1135, - "datasource": { - "id": 3, - "column_formats": {}, - "description": null, - "database": { - "id": 1, - "name": "examples", - "backend": "mysql", - "allow_multi_schema_metadata_fetch": false, - "allows_subquery": true, - "allows_cost_estimate": false - }, - "default_endpoint": null, - "filter_select": true, - "filter_select_enabled": true, - "name": "birth_names", - "datasource_name": "birth_names", - "type": "table", - "schema": null, - "offset": 0, - "cache_timeout": null, - "params": null, - "perm": "[examples].[birth_names](id:3)", - "edit_url": "/tablemodelview/edit/3", - "sql": null, - "columns": [ - { - "id": 332, - "column_name": "num_california", - "verbose_name": null, - "description": null, - "expression": "CASE WHEN state = 'CA' THEN num ELSE 0 END", - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": null - }, - { - "id": 333, - "column_name": "ds", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": true, - "type": "DATETIME" - }, - { - "id": 334, - "column_name": "gender", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "VARCHAR(16)" - }, - { - "id": 335, - "column_name": "name", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "VARCHAR(255)" - }, - { - "id": 336, - "column_name": "num", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT" - }, - { - "id": 337, - "column_name": "state", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "VARCHAR(10)" - }, - { - "id": 338, - "column_name": "sum_boys", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT" - }, - { - "id": 339, - "column_name": "sum_girls", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT" - } - ], - "metrics": [ - { - "id": 9, - "metric_name": "sum__num", - "verbose_name": null, - "description": null, - "expression": "SUM(num)", - "warning_text": null, - "d3format": null - }, - { - "id": 10, - "metric_name": "count", - "verbose_name": "COUNT(*)", - "description": null, - "expression": "COUNT(*)", - "warning_text": null, - "d3format": null - } - ], - "order_by_choices": [ - ["[\"ds\", true]", "ds [asc]"], - ["[\"ds\", false]", "ds [desc]"], - ["[\"gender\", true]", "gender [asc]"], - ["[\"gender\", false]", "gender [desc]"], - ["[\"name\", true]", "name [asc]"], - ["[\"name\", false]", "name [desc]"], - ["[\"num\", true]", "num [asc]"], - ["[\"num\", false]", "num [desc]"], - ["[\"num_california\", true]", "num_california [asc]"], - ["[\"num_california\", false]", "num_california [desc]"], - ["[\"state\", true]", "state [asc]"], - ["[\"state\", false]", "state [desc]"], - ["[\"sum_boys\", true]", "sum_boys [asc]"], - ["[\"sum_boys\", false]", "sum_boys [desc]"], - ["[\"sum_girls\", true]", "sum_girls [asc]"], - ["[\"sum_girls\", false]", "sum_girls [desc]"] - ], - "owners": [], - "verbose_map": { - "__timestamp": "Time", - "sum__num": "sum__num", - "count": "COUNT(*)", - "num_california": "num_california", - "ds": "ds", - "gender": "gender", - "name": "name", - "num": "num", - "state": "state (this is a very very very long column)", - "sum_boys": "sum_boys", - "sum_girls": "sum_girls" - }, - "select_star": "SELECT *\nFROM birth_names\nLIMIT 100", - "granularity_sqla": [["ds", "ds"]], - "time_grain_sqla": [ - [null, "Time Column"], - ["PT1S", "second"], - ["PT1M", "minute"], - ["PT1H", "hour"], - ["P1D", "day"], - ["P1W", "week"], - ["P1M", "month"], - ["P0.25Y", "quarter"], - ["P1Y", "year"], - ["1969-12-29T00:00:00Z/P1W", "week_start_monday"] - ], - "main_dttm_col": "ds", - "fetch_values_predicate": null, - "template_params": null - }, - "initialValues": {}, - "formData": { - "datasource": "3__table", - "viz_type": "table", - "slice_id": 60, - "url_params": {}, - "time_range_endpoints": ["inclusive", "exclusive"], - "granularity_sqla": "ds", - "time_grain_sqla": null, - "time_range": "No filter", - "groupby": ["name", "state", "gender"], - "metrics": [ - { - "expressionType": "SIMPLE", - "column": { - "column_name": "num", - "type": "BIGINT" - }, - "aggregate": "SUM", - "sqlExpression": null, - "hasCustomLabel": true, - "fromFormData": true, - "label": "total", - "optionName": "metric_11" - }, - { - "expressionType": "SIMPLE", - "column": { - "id": 338, - "column_name": "sum_boys", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT", - "optionName": "_col_sum_boys" - }, - "aggregate": "SUM", - "sqlExpression": null, - "hasCustomLabel": false, - "fromFormData": false, - "label": "SUM(sum_boys)", - "optionName": "metric_ufgxfk7yl5i_a5abvvqw2pg" - }, - { - "expressionType": "SIMPLE", - "column": { - "id": 339, - "column_name": "sum_girls", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT", - "optionName": "_col_sum_girls" - }, - "aggregate": "SUM", - "sqlExpression": null, - "hasCustomLabel": false, - "fromFormData": false, - "label": "SUM(sum_girls)", - "optionName": "metric_xfniwund1q_16h27ybgnsd" - } - ], - "percent_metrics": [ - { - "expressionType": "SQL", - "sqlExpression": "1.0 * SUM(sum_boys) / SUM(num)", - "column": null, - "aggregate": null, - "hasCustomLabel": true, - "fromFormData": true, - "label": "pct_boys", - "optionName": "metric_01elu1eg9g3t_0y3v2eutrutb" - } - ], - "timeseries_limit_metric": { - "expressionType": "SIMPLE", - "column": { - "id": 336, - "column_name": "num", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT", - "optionName": "_col_num" - }, - "aggregate": "SUM", - "sqlExpression": null, - "hasCustomLabel": false, - "fromFormData": false, - "label": "SUM(num)", - "optionName": "metric_ti9n459f5h_46thexgwae" - }, - "row_limit": null, - "include_time": false, - "order_desc": true, - "all_columns": [], - "order_by_cols": [], - "adhoc_filters": [], - "table_timestamp_format": "%Y-%m-%d %H:%M:%S", - "page_length": 0, - "include_search": true, - "table_filter": false, - "align_pn": false, - "color_pn": true - }, - "hooks": {}, - "queryData": { - "cache_key": "c858224d75f3cd6f2a1abb61f4ec34cb", - "cached_dttm": "2020-02-26T01:48:23", - "cache_timeout": 86400, - "error": null, - "form_data": { - "datasource": "3__table", - "viz_type": "table", - "slice_id": 60, - "url_params": {}, - "time_range_endpoints": ["inclusive", "exclusive"], - "granularity_sqla": "ds", - "time_grain_sqla": null, - "time_range": "No filter", - "groupby": ["name", "state", "gender"], - "metrics": [ - { - "expressionType": "SIMPLE", - "column": { - "column_name": "num", - "type": "BIGINT" - }, - "aggregate": "SUM", - "sqlExpression": null, - "hasCustomLabel": true, - "fromFormData": true, - "label": "total", - "optionName": "metric_11" - }, - { - "expressionType": "SIMPLE", - "column": { - "id": 338, - "column_name": "sum_boys", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT", - "optionName": "_col_sum_boys" - }, - "aggregate": "SUM", - "sqlExpression": null, - "hasCustomLabel": false, - "fromFormData": false, - "label": "SUM(sum_boys)", - "optionName": "metric_ufgxfk7yl5i_a5abvvqw2pg" - }, - { - "expressionType": "SIMPLE", - "column": { - "id": 339, - "column_name": "sum_girls", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT", - "optionName": "_col_sum_girls" - }, - "aggregate": "SUM", - "sqlExpression": null, - "hasCustomLabel": false, - "fromFormData": false, - "label": "SUM(sum_girls)", - "optionName": "metric_xfniwund1q_16h27ybgnsd" - } - ], - "percent_metrics": [ - { - "expressionType": "SQL", - "sqlExpression": "1.0 * SUM(sum_boys) / SUM(num)", - "column": null, - "aggregate": null, - "hasCustomLabel": true, - "fromFormData": true, - "label": "pct_boys", - "optionName": "metric_01elu1eg9g3t_0y3v2eutrutb" - } - ], - "timeseries_limit_metric": { - "expressionType": "SIMPLE", - "column": { - "id": 336, - "column_name": "num", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT", - "optionName": "_col_num" - }, - "aggregate": "SUM", - "sqlExpression": null, - "hasCustomLabel": false, - "fromFormData": false, - "label": "SUM(num)", - "optionName": "metric_ti9n459f5h_46thexgwae" - }, - "row_limit": null, - "include_time": false, - "order_desc": true, - "all_columns": [], - "order_by_cols": [], - "adhoc_filters": [], - "table_timestamp_format": "%Y-%m-%d %H:%M:%S", - "page_length": 0, - "include_search": true, - "table_filter": false, - "align_pn": false, - "color_pn": true, - "where": "", - "having": "", - "having_filters": [], - "filters": [] - }, - "is_cached": true, - "query": "SELECT state AS state,\n gender AS gender,\n name AS name,\n sum(num) AS total,\n sum(sum_boys) AS `SUM(sum_boys)`,\n sum(sum_girls) AS `SUM(sum_girls)`,\n 1.0 * SUM(sum_boys) / SUM(num) AS pct_boys,\n sum(num) AS `SUM(num)`\nFROM birth_names\nGROUP BY state,\n gender,\n name\nORDER BY `SUM(num)` DESC\nLIMIT 50000", - "status": "success", - "stacktrace": null, - "rowcount": 2826, - "data": { - "records": [ - { - "name": "Michael ", - "state": "other", - "gender": "boy", - "total": 1047930, - "SUM(sum_boys)": 1047930, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christopher (test link)", - "state": "other", - "gender": "boy", - "total": 803544, - "SUM(sum_boys)": 803544, - "SUM(sum_girls)": -300000, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "James (test javascript link)", - "state": "other", - "gender": "boy", - "total": 749616, - "SUM(sum_boys)": 749616, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "David", - "state": "other", - "gender": "boy", - "total": 673992, - "SUM(sum_boys)": 673992, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "John", - "state": "other", - "gender": "boy", - "total": 638450, - "SUM(sum_boys)": 638450, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Matthew", - "state": "other", - "gender": "boy", - "total": 608138, - "SUM(sum_boys)": 608138, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jennifer", - "state": "other", - "gender": "girl", - "total": 587478, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 587478, - "%pct_boys": 0 - }, - { - "name": "Robert", - "state": "other", - "gender": "boy", - "total": 575592, - "SUM(sum_boys)": 575592, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "other", - "gender": "boy", - "total": 574372, - "SUM(sum_boys)": 574372, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joshua", - "state": "other", - "gender": "boy", - "total": 547979, - "SUM(sum_boys)": 547979, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joseph", - "state": "other", - "gender": "boy", - "total": 466357, - "SUM(sum_boys)": 466357, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Daniel", - "state": "other", - "gender": "boy", - "total": 457266, - "SUM(sum_boys)": 457266, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jessica", - "state": "other", - "gender": "girl", - "total": 453866, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 453866, - "%pct_boys": 0 - }, - { - "name": "Jason", - "state": "other", - "gender": "boy", - "total": 449191, - "SUM(sum_boys)": 449191, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrew", - "state": "other", - "gender": "boy", - "total": 416368, - "SUM(sum_boys)": 416368, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ashley", - "state": "other", - "gender": "girl", - "total": 384012, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 384012, - "%pct_boys": 0 - }, - { - "name": "Brian", - "state": "other", - "gender": "boy", - "total": 378795, - "SUM(sum_boys)": 378795, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ryan", - "state": "other", - "gender": "boy", - "total": 370107, - "SUM(sum_boys)": 370107, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacob", - "state": "other", - "gender": "boy", - "total": 367231, - "SUM(sum_boys)": 367231, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sarah", - "state": "other", - "gender": "girl", - "total": 366850, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 366850, - "%pct_boys": 0 - }, - { - "name": "Amanda", - "state": "other", - "gender": "girl", - "total": 352753, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 352753, - "%pct_boys": 0 - }, - { - "name": "Brandon", - "state": "other", - "gender": "boy", - "total": 348881, - "SUM(sum_boys)": 348881, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Justin", - "state": "other", - "gender": "boy", - "total": 346958, - "SUM(sum_boys)": 346958, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anthony", - "state": "other", - "gender": "boy", - "total": 340341, - "SUM(sum_boys)": 340341, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "other", - "gender": "boy", - "total": 333062, - "SUM(sum_boys)": 333062, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Thomas", - "state": "other", - "gender": "boy", - "total": 332219, - "SUM(sum_boys)": 332219, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elizabeth", - "state": "other", - "gender": "girl", - "total": 321603, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 321603, - "%pct_boys": 0 - }, - { - "name": "Nicholas", - "state": "other", - "gender": "boy", - "total": 316523, - "SUM(sum_boys)": 316523, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Timothy", - "state": "other", - "gender": "boy", - "total": 315683, - "SUM(sum_boys)": 315683, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kimberly", - "state": "other", - "gender": "girl", - "total": 305425, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 305425, - "%pct_boys": 0 - }, - { - "name": "Jonathan", - "state": "other", - "gender": "boy", - "total": 305290, - "SUM(sum_boys)": 305290, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Eric", - "state": "other", - "gender": "boy", - "total": 299883, - "SUM(sum_boys)": 299883, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emily", - "state": "other", - "gender": "girl", - "total": 297807, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 297807, - "%pct_boys": 0 - }, - { - "name": "Charles", - "state": "other", - "gender": "boy", - "total": 293916, - "SUM(sum_boys)": 293916, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melissa", - "state": "other", - "gender": "girl", - "total": 293681, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 293681, - "%pct_boys": 0 - }, - { - "name": "Steven", - "state": "other", - "gender": "boy", - "total": 285703, - "SUM(sum_boys)": 285703, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amy", - "state": "other", - "gender": "girl", - "total": 275350, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 275350, - "%pct_boys": 0 - }, - { - "name": "Stephanie", - "state": "other", - "gender": "girl", - "total": 272507, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 272507, - "%pct_boys": 0 - }, - { - "name": "Tyler", - "state": "other", - "gender": "boy", - "total": 270283, - "SUM(sum_boys)": 270283, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lisa", - "state": "other", - "gender": "girl", - "total": 269298, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 269298, - "%pct_boys": 0 - }, - { - "name": "Richard", - "state": "other", - "gender": "boy", - "total": 268573, - "SUM(sum_boys)": 268573, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angela", - "state": "other", - "gender": "girl", - "total": 268140, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 268140, - "%pct_boys": 0 - }, - { - "name": "Michelle", - "state": "other", - "gender": "girl", - "total": 265779, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 265779, - "%pct_boys": 0 - }, - { - "name": "Michael", - "state": "CA", - "gender": "boy", - "total": 259809, - "SUM(sum_boys)": 259809, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeffrey", - "state": "other", - "gender": "boy", - "total": 254350, - "SUM(sum_boys)": 254350, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mark", - "state": "other", - "gender": "boy", - "total": 254187, - "SUM(sum_boys)": 254187, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Benjamin", - "state": "other", - "gender": "boy", - "total": 253077, - "SUM(sum_boys)": 253077, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Heather", - "state": "other", - "gender": "girl", - "total": 246449, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 246449, - "%pct_boys": 0 - }, - { - "name": "Mary", - "state": "other", - "gender": "girl", - "total": 242256, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 242256, - "%pct_boys": 0 - }, - { - "name": "Zachary", - "state": "other", - "gender": "boy", - "total": 239467, - "SUM(sum_boys)": 239467, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rebecca", - "state": "other", - "gender": "girl", - "total": 226643, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 226643, - "%pct_boys": 0 - }, - { - "name": "Michael", - "state": "NY", - "gender": "boy", - "total": 226479, - "SUM(sum_boys)": 226479, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Aaron", - "state": "other", - "gender": "boy", - "total": 221350, - "SUM(sum_boys)": 221350, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adam", - "state": "other", - "gender": "boy", - "total": 214775, - "SUM(sum_boys)": 214775, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rachel", - "state": "other", - "gender": "girl", - "total": 211595, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 211595, - "%pct_boys": 0 - }, - { - "name": "Jeremy", - "state": "other", - "gender": "boy", - "total": 207412, - "SUM(sum_boys)": 207412, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Scott", - "state": "other", - "gender": "boy", - "total": 207078, - "SUM(sum_boys)": 207078, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Samantha", - "state": "other", - "gender": "girl", - "total": 206739, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 206739, - "%pct_boys": 0 - }, - { - "name": "Nathan", - "state": "other", - "gender": "boy", - "total": 205192, - "SUM(sum_boys)": 205192, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicole", - "state": "other", - "gender": "girl", - "total": 203342, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 203342, - "%pct_boys": 0 - }, - { - "name": "David", - "state": "CA", - "gender": "boy", - "total": 203216, - "SUM(sum_boys)": 203216, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Megan", - "state": "other", - "gender": "girl", - "total": 202951, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 202951, - "%pct_boys": 0 - }, - { - "name": "Samuel", - "state": "other", - "gender": "boy", - "total": 198036, - "SUM(sum_boys)": 198036, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kyle", - "state": "other", - "gender": "boy", - "total": 192360, - "SUM(sum_boys)": 192360, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Hannah", - "state": "other", - "gender": "girl", - "total": 186115, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 186115, - "%pct_boys": 0 - }, - { - "name": "Christopher", - "state": "CA", - "gender": "boy", - "total": 185674, - "SUM(sum_boys)": 185674, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Austin", - "state": "other", - "gender": "boy", - "total": 182586, - "SUM(sum_boys)": 182586, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amber", - "state": "other", - "gender": "girl", - "total": 181081, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 181081, - "%pct_boys": 0 - }, - { - "name": "Alexander", - "state": "other", - "gender": "boy", - "total": 180569, - "SUM(sum_boys)": 180569, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Laura", - "state": "other", - "gender": "girl", - "total": 179913, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 179913, - "%pct_boys": 0 - }, - { - "name": "Daniel", - "state": "CA", - "gender": "boy", - "total": 178189, - "SUM(sum_boys)": 178189, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brittany", - "state": "other", - "gender": "girl", - "total": 177319, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 177319, - "%pct_boys": 0 - }, - { - "name": "Lauren", - "state": "other", - "gender": "girl", - "total": 175351, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 175351, - "%pct_boys": 0 - }, - { - "name": "Patrick", - "state": "other", - "gender": "boy", - "total": 173355, - "SUM(sum_boys)": 173355, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paul", - "state": "other", - "gender": "boy", - "total": 173021, - "SUM(sum_boys)": 173021, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kenneth", - "state": "other", - "gender": "boy", - "total": 171720, - "SUM(sum_boys)": 171720, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stephen", - "state": "other", - "gender": "boy", - "total": 166717, - "SUM(sum_boys)": 166717, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jennifer", - "state": "CA", - "gender": "girl", - "total": 159368, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 159368, - "%pct_boys": 0 - }, - { - "name": "Kelly", - "state": "other", - "gender": "girl", - "total": 158262, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 158262, - "%pct_boys": 0 - }, - { - "name": "Christina", - "state": "other", - "gender": "girl", - "total": 154452, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 154452, - "%pct_boys": 0 - }, - { - "name": "Gregory", - "state": "other", - "gender": "boy", - "total": 154278, - "SUM(sum_boys)": 154278, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katherine", - "state": "other", - "gender": "girl", - "total": 153957, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 153957, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "other", - "gender": "boy", - "total": 152291, - "SUM(sum_boys)": 152291, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kayla", - "state": "other", - "gender": "girl", - "total": 151559, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 151559, - "%pct_boys": 0 - }, - { - "name": "Tiffany", - "state": "other", - "gender": "girl", - "total": 149872, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 149872, - "%pct_boys": 0 - }, - { - "name": "Michael", - "state": "TX", - "gender": "boy", - "total": 149189, - "SUM(sum_boys)": 149189, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Madison", - "state": "other", - "gender": "girl", - "total": 143907, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 143907, - "%pct_boys": 0 - }, - { - "name": "Travis", - "state": "other", - "gender": "boy", - "total": 143536, - "SUM(sum_boys)": 143536, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cody", - "state": "other", - "gender": "boy", - "total": 142780, - "SUM(sum_boys)": 142780, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "other", - "gender": "girl", - "total": 142213, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 142213, - "%pct_boys": 0 - }, - { - "name": "Matthew", - "state": "CA", - "gender": "boy", - "total": 141032, - "SUM(sum_boys)": 141032, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michael", - "state": "PA", - "gender": "boy", - "total": 140134, - "SUM(sum_boys)": 140134, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sean", - "state": "other", - "gender": "boy", - "total": 139851, - "SUM(sum_boys)": 139851, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anna", - "state": "other", - "gender": "girl", - "total": 139644, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 139644, - "%pct_boys": 0 - }, - { - "name": "Robert", - "state": "CA", - "gender": "boy", - "total": 139518, - "SUM(sum_boys)": 139518, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrea", - "state": "other", - "gender": "girl", - "total": 137367, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 137367, - "%pct_boys": 0 - }, - { - "name": "Christopher", - "state": "NY", - "gender": "boy", - "total": 135892, - "SUM(sum_boys)": 135892, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michael", - "state": "IL", - "gender": "boy", - "total": 134250, - "SUM(sum_boys)": 134250, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ethan", - "state": "other", - "gender": "boy", - "total": 133550, - "SUM(sum_boys)": 133550, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jose", - "state": "CA", - "gender": "boy", - "total": 132650, - "SUM(sum_boys)": 132650, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Crystal", - "state": "other", - "gender": "girl", - "total": 131582, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 131582, - "%pct_boys": 0 - }, - { - "name": "Anthony", - "state": "CA", - "gender": "boy", - "total": 131214, - "SUM(sum_boys)": 131214, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christopher", - "state": "TX", - "gender": "boy", - "total": 130177, - "SUM(sum_boys)": 130177, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jessica", - "state": "CA", - "gender": "girl", - "total": 128294, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 128294, - "%pct_boys": 0 - }, - { - "name": "John", - "state": "CA", - "gender": "boy", - "total": 127360, - "SUM(sum_boys)": 127360, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sara", - "state": "other", - "gender": "girl", - "total": 127204, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 127204, - "%pct_boys": 0 - }, - { - "name": "Julie", - "state": "other", - "gender": "girl", - "total": 126662, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 126662, - "%pct_boys": 0 - }, - { - "name": "Danielle", - "state": "other", - "gender": "girl", - "total": 126511, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 126511, - "%pct_boys": 0 - }, - { - "name": "Dylan", - "state": "other", - "gender": "boy", - "total": 126495, - "SUM(sum_boys)": 126495, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexis", - "state": "other", - "gender": "girl", - "total": 125955, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 125955, - "%pct_boys": 0 - }, - { - "name": "Erin", - "state": "other", - "gender": "girl", - "total": 124324, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 124324, - "%pct_boys": 0 - }, - { - "name": "Michael", - "state": "OH", - "gender": "boy", - "total": 123660, - "SUM(sum_boys)": 123660, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shannon", - "state": "other", - "gender": "girl", - "total": 123406, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 123406, - "%pct_boys": 0 - }, - { - "name": "John", - "state": "NY", - "gender": "boy", - "total": 123228, - "SUM(sum_boys)": 123228, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "James", - "state": "CA", - "gender": "boy", - "total": 122151, - "SUM(sum_boys)": 122151, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Courtney", - "state": "other", - "gender": "girl", - "total": 121047, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 121047, - "%pct_boys": 0 - }, - { - "name": "David", - "state": "NY", - "gender": "boy", - "total": 119754, - "SUM(sum_boys)": 119754, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joseph", - "state": "NY", - "gender": "boy", - "total": 118684, - "SUM(sum_boys)": 118684, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Bryan", - "state": "other", - "gender": "boy", - "total": 116872, - "SUM(sum_boys)": 116872, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrew", - "state": "CA", - "gender": "boy", - "total": 116597, - "SUM(sum_boys)": 116597, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joshua", - "state": "CA", - "gender": "boy", - "total": 116469, - "SUM(sum_boys)": 116469, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joseph", - "state": "CA", - "gender": "boy", - "total": 115570, - "SUM(sum_boys)": 115570, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "David", - "state": "TX", - "gender": "boy", - "total": 114961, - "SUM(sum_boys)": 114961, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chad", - "state": "other", - "gender": "boy", - "total": 113907, - "SUM(sum_boys)": 113907, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emma", - "state": "other", - "gender": "girl", - "total": 112500, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 112500, - "%pct_boys": 0 - }, - { - "name": "Tammy", - "state": "other", - "gender": "girl", - "total": 111957, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 111957, - "%pct_boys": 0 - }, - { - "name": "Shawn", - "state": "other", - "gender": "boy", - "total": 110918, - "SUM(sum_boys)": 110918, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victoria", - "state": "other", - "gender": "girl", - "total": 109137, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 109137, - "%pct_boys": 0 - }, - { - "name": "Christian", - "state": "other", - "gender": "boy", - "total": 108196, - "SUM(sum_boys)": 108196, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jesse", - "state": "other", - "gender": "boy", - "total": 107537, - "SUM(sum_boys)": 107537, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Abigail", - "state": "other", - "gender": "girl", - "total": 107063, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 107063, - "%pct_boys": 0 - }, - { - "name": "Logan", - "state": "other", - "gender": "boy", - "total": 106753, - "SUM(sum_boys)": 106753, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Bradley", - "state": "other", - "gender": "boy", - "total": 106515, - "SUM(sum_boys)": 106515, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dustin", - "state": "other", - "gender": "boy", - "total": 106456, - "SUM(sum_boys)": 106456, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Caleb", - "state": "other", - "gender": "boy", - "total": 105902, - "SUM(sum_boys)": 105902, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Karen", - "state": "other", - "gender": "girl", - "total": 105126, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 105126, - "%pct_boys": 0 - }, - { - "name": "Robert", - "state": "NY", - "gender": "boy", - "total": 105120, - "SUM(sum_boys)": 105120, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jason", - "state": "CA", - "gender": "boy", - "total": 104688, - "SUM(sum_boys)": 104688, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Matthew", - "state": "NY", - "gender": "boy", - "total": 104538, - "SUM(sum_boys)": 104538, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Olivia", - "state": "other", - "gender": "girl", - "total": 104272, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 104272, - "%pct_boys": 0 - }, - { - "name": "Donald", - "state": "other", - "gender": "boy", - "total": 104084, - "SUM(sum_boys)": 104084, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Allison", - "state": "other", - "gender": "girl", - "total": 103455, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 103455, - "%pct_boys": 0 - }, - { - "name": "James", - "state": "NY", - "gender": "boy", - "total": 103237, - "SUM(sum_boys)": 103237, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jennifer", - "state": "NY", - "gender": "girl", - "total": 103066, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 103066, - "%pct_boys": 0 - }, - { - "name": "Michael", - "state": "MI", - "gender": "boy", - "total": 102958, - "SUM(sum_boys)": 102958, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michael", - "state": "FL", - "gender": "boy", - "total": 102070, - "SUM(sum_boys)": 102070, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cameron", - "state": "other", - "gender": "boy", - "total": 101772, - "SUM(sum_boys)": 101772, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "John", - "state": "TX", - "gender": "boy", - "total": 101426, - "SUM(sum_boys)": 101426, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alyssa", - "state": "other", - "gender": "girl", - "total": 101361, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 101361, - "%pct_boys": 0 - }, - { - "name": "Michael", - "state": "NJ", - "gender": "boy", - "total": 100214, - "SUM(sum_boys)": 100214, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "CA", - "gender": "boy", - "total": 99965, - "SUM(sum_boys)": 99965, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Daniel", - "state": "NY", - "gender": "boy", - "total": 99315, - "SUM(sum_boys)": 99315, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "James", - "state": "TX", - "gender": "boy", - "total": 99212, - "SUM(sum_boys)": 99212, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ryan", - "state": "CA", - "gender": "boy", - "total": 98980, - "SUM(sum_boys)": 98980, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "other", - "gender": "girl", - "total": 98769, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 98769, - "%pct_boys": 0 - }, - { - "name": "Jonathan", - "state": "CA", - "gender": "boy", - "total": 98157, - "SUM(sum_boys)": 98157, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jose", - "state": "TX", - "gender": "boy", - "total": 98020, - "SUM(sum_boys)": 98020, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "April", - "state": "other", - "gender": "girl", - "total": 97561, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 97561, - "%pct_boys": 0 - }, - { - "name": "Susan", - "state": "other", - "gender": "girl", - "total": 97348, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 97348, - "%pct_boys": 0 - }, - { - "name": "Brian", - "state": "CA", - "gender": "boy", - "total": 96750, - "SUM(sum_boys)": 96750, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ronald", - "state": "other", - "gender": "boy", - "total": 96715, - "SUM(sum_boys)": 96715, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Morgan", - "state": "other", - "gender": "girl", - "total": 95131, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 95131, - "%pct_boys": 0 - }, - { - "name": "Michelle", - "state": "CA", - "gender": "girl", - "total": 94129, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 94129, - "%pct_boys": 0 - }, - { - "name": "Jennifer", - "state": "TX", - "gender": "girl", - "total": 92418, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 92418, - "%pct_boys": 0 - }, - { - "name": "Anthony", - "state": "NY", - "gender": "boy", - "total": 91305, - "SUM(sum_boys)": 91305, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Noah", - "state": "other", - "gender": "boy", - "total": 90488, - "SUM(sum_boys)": 90488, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Eric", - "state": "CA", - "gender": "boy", - "total": 89832, - "SUM(sum_boys)": 89832, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Hunter", - "state": "other", - "gender": "boy", - "total": 89166, - "SUM(sum_boys)": 89166, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jasmine", - "state": "other", - "gender": "girl", - "total": 88841, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 88841, - "%pct_boys": 0 - }, - { - "name": "Natalie", - "state": "other", - "gender": "girl", - "total": 87829, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 87829, - "%pct_boys": 0 - }, - { - "name": "Christine", - "state": "other", - "gender": "girl", - "total": 86682, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 86682, - "%pct_boys": 0 - }, - { - "name": "Elizabeth", - "state": "CA", - "gender": "girl", - "total": 86672, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 86672, - "%pct_boys": 0 - }, - { - "name": "Ashley", - "state": "CA", - "gender": "girl", - "total": 86398, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 86398, - "%pct_boys": 0 - }, - { - "name": "Stephanie", - "state": "CA", - "gender": "girl", - "total": 86230, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 86230, - "%pct_boys": 0 - }, - { - "name": "Robert", - "state": "TX", - "gender": "boy", - "total": 86167, - "SUM(sum_boys)": 86167, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tracy", - "state": "other", - "gender": "girl", - "total": 86107, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 86107, - "%pct_boys": 0 - }, - { - "name": "Patricia", - "state": "other", - "gender": "girl", - "total": 86021, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 86021, - "%pct_boys": 0 - }, - { - "name": "Edward", - "state": "other", - "gender": "boy", - "total": 85817, - "SUM(sum_boys)": 85817, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brianna", - "state": "other", - "gender": "girl", - "total": 85376, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 85376, - "%pct_boys": 0 - }, - { - "name": "Tina", - "state": "other", - "gender": "girl", - "total": 85306, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 85306, - "%pct_boys": 0 - }, - { - "name": "John", - "state": "PA", - "gender": "boy", - "total": 85005, - "SUM(sum_boys)": 85005, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gary", - "state": "other", - "gender": "boy", - "total": 84857, - "SUM(sum_boys)": 84857, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Richard", - "state": "CA", - "gender": "boy", - "total": 84640, - "SUM(sum_boys)": 84640, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "CA", - "gender": "boy", - "total": 84381, - "SUM(sum_boys)": 84381, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Keith", - "state": "other", - "gender": "boy", - "total": 84006, - "SUM(sum_boys)": 84006, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jared", - "state": "other", - "gender": "boy", - "total": 83055, - "SUM(sum_boys)": 83055, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Steven", - "state": "CA", - "gender": "boy", - "total": 82791, - "SUM(sum_boys)": 82791, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Daniel", - "state": "TX", - "gender": "boy", - "total": 82426, - "SUM(sum_boys)": 82426, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cynthia", - "state": "other", - "gender": "girl", - "total": 82308, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 82308, - "%pct_boys": 0 - }, - { - "name": "Joshua", - "state": "TX", - "gender": "boy", - "total": 81999, - "SUM(sum_boys)": 81999, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "David", - "state": "PA", - "gender": "boy", - "total": 81881, - "SUM(sum_boys)": 81881, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erica", - "state": "other", - "gender": "girl", - "total": 81603, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 81603, - "%pct_boys": 0 - }, - { - "name": "Katie", - "state": "other", - "gender": "girl", - "total": 80575, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 80575, - "%pct_boys": 0 - }, - { - "name": "Michael", - "state": "MA", - "gender": "boy", - "total": 80370, - "SUM(sum_boys)": 80370, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Todd", - "state": "other", - "gender": "boy", - "total": 80126, - "SUM(sum_boys)": 80126, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Derek", - "state": "other", - "gender": "boy", - "total": 79405, - "SUM(sum_boys)": 79405, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christopher", - "state": "FL", - "gender": "boy", - "total": 79368, - "SUM(sum_boys)": 79368, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "David", - "state": "OH", - "gender": "boy", - "total": 78723, - "SUM(sum_boys)": 78723, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Matthew", - "state": "PA", - "gender": "boy", - "total": 78530, - "SUM(sum_boys)": 78530, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "James", - "state": "OH", - "gender": "boy", - "total": 78491, - "SUM(sum_boys)": 78491, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicholas", - "state": "CA", - "gender": "boy", - "total": 78214, - "SUM(sum_boys)": 78214, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Matthew", - "state": "TX", - "gender": "boy", - "total": 78144, - "SUM(sum_boys)": 78144, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "David", - "state": "IL", - "gender": "boy", - "total": 77826, - "SUM(sum_boys)": 77826, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brandon", - "state": "CA", - "gender": "boy", - "total": 77307, - "SUM(sum_boys)": 77307, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Pamela", - "state": "other", - "gender": "girl", - "total": 76989, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 76989, - "%pct_boys": 0 - }, - { - "name": "Melissa", - "state": "CA", - "gender": "girl", - "total": 76619, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 76619, - "%pct_boys": 0 - }, - { - "name": "Juan", - "state": "CA", - "gender": "boy", - "total": 76572, - "SUM(sum_boys)": 76572, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "NY", - "gender": "boy", - "total": 76417, - "SUM(sum_boys)": 76417, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathryn", - "state": "other", - "gender": "girl", - "total": 76406, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 76406, - "%pct_boys": 0 - }, - { - "name": "Lori", - "state": "other", - "gender": "girl", - "total": 76289, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 76289, - "%pct_boys": 0 - }, - { - "name": "Sarah", - "state": "CA", - "gender": "girl", - "total": 75972, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 75972, - "%pct_boys": 0 - }, - { - "name": "Christopher", - "state": "PA", - "gender": "boy", - "total": 75490, - "SUM(sum_boys)": 75490, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jessica", - "state": "TX", - "gender": "girl", - "total": 75476, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 75476, - "%pct_boys": 0 - }, - { - "name": "Corey", - "state": "other", - "gender": "boy", - "total": 75418, - "SUM(sum_boys)": 75418, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristen", - "state": "other", - "gender": "girl", - "total": 75401, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 75401, - "%pct_boys": 0 - }, - { - "name": "Robert", - "state": "PA", - "gender": "boy", - "total": 75217, - "SUM(sum_boys)": 75217, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Evan", - "state": "other", - "gender": "boy", - "total": 75206, - "SUM(sum_boys)": 75206, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christopher", - "state": "OH", - "gender": "boy", - "total": 75189, - "SUM(sum_boys)": 75189, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "James", - "state": "PA", - "gender": "boy", - "total": 74988, - "SUM(sum_boys)": 74988, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Maria", - "state": "CA", - "gender": "girl", - "total": 74966, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 74966, - "%pct_boys": 0 - }, - { - "name": "Douglas", - "state": "other", - "gender": "boy", - "total": 74822, - "SUM(sum_boys)": 74822, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacob", - "state": "CA", - "gender": "boy", - "total": 74564, - "SUM(sum_boys)": 74564, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathaniel", - "state": "other", - "gender": "boy", - "total": 74499, - "SUM(sum_boys)": 74499, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Justin", - "state": "CA", - "gender": "boy", - "total": 73379, - "SUM(sum_boys)": 73379, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Thomas", - "state": "NY", - "gender": "boy", - "total": 73013, - "SUM(sum_boys)": 73013, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gabriel", - "state": "other", - "gender": "boy", - "total": 72847, - "SUM(sum_boys)": 72847, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kimberly", - "state": "CA", - "gender": "girl", - "total": 72756, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 72756, - "%pct_boys": 0 - }, - { - "name": "Larry", - "state": "other", - "gender": "boy", - "total": 72610, - "SUM(sum_boys)": 72610, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brooke", - "state": "other", - "gender": "girl", - "total": 72579, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 72579, - "%pct_boys": 0 - }, - { - "name": "Matthew", - "state": "OH", - "gender": "boy", - "total": 72477, - "SUM(sum_boys)": 72477, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christopher", - "state": "IL", - "gender": "boy", - "total": 72462, - "SUM(sum_boys)": 72462, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Haley", - "state": "other", - "gender": "girl", - "total": 72332, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 72332, - "%pct_boys": 0 - }, - { - "name": "James", - "state": "IL", - "gender": "boy", - "total": 72096, - "SUM(sum_boys)": 72096, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "John", - "state": "IL", - "gender": "boy", - "total": 71680, - "SUM(sum_boys)": 71680, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Marcus", - "state": "other", - "gender": "boy", - "total": 70954, - "SUM(sum_boys)": 70954, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dawn", - "state": "other", - "gender": "girl", - "total": 70951, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 70951, - "%pct_boys": 0 - }, - { - "name": "Jennifer", - "state": "IL", - "gender": "girl", - "total": 70922, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 70922, - "%pct_boys": 0 - }, - { - "name": "Jessica", - "state": "NY", - "gender": "girl", - "total": 70665, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 70665, - "%pct_boys": 0 - }, - { - "name": "Brian", - "state": "NY", - "gender": "boy", - "total": 70418, - "SUM(sum_boys)": 70418, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Luke", - "state": "other", - "gender": "boy", - "total": 70050, - "SUM(sum_boys)": 70050, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ashley", - "state": "TX", - "gender": "girl", - "total": 70029, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 70029, - "%pct_boys": 0 - }, - { - "name": "Alex", - "state": "other", - "gender": "boy", - "total": 70001, - "SUM(sum_boys)": 70001, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Robert", - "state": "OH", - "gender": "boy", - "total": 69607, - "SUM(sum_boys)": 69607, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "NY", - "gender": "boy", - "total": 69478, - "SUM(sum_boys)": 69478, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Matthew", - "state": "IL", - "gender": "boy", - "total": 69172, - "SUM(sum_boys)": 69172, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lindsey", - "state": "other", - "gender": "girl", - "total": 69109, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 69109, - "%pct_boys": 0 - }, - { - "name": "Jason", - "state": "NY", - "gender": "boy", - "total": 69017, - "SUM(sum_boys)": 69017, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "John", - "state": "OH", - "gender": "boy", - "total": 68969, - "SUM(sum_boys)": 68969, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Teresa", - "state": "other", - "gender": "girl", - "total": 68962, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 68962, - "%pct_boys": 0 - }, - { - "name": "Andrew", - "state": "NY", - "gender": "boy", - "total": 68847, - "SUM(sum_boys)": 68847, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Juan", - "state": "TX", - "gender": "boy", - "total": 68706, - "SUM(sum_boys)": 68706, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "George", - "state": "other", - "gender": "boy", - "total": 68334, - "SUM(sum_boys)": 68334, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicole", - "state": "CA", - "gender": "girl", - "total": 68223, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 68223, - "%pct_boys": 0 - }, - { - "name": "Joseph", - "state": "PA", - "gender": "boy", - "total": 67776, - "SUM(sum_boys)": 67776, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "TX", - "gender": "boy", - "total": 67602, - "SUM(sum_boys)": 67602, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jennifer", - "state": "PA", - "gender": "girl", - "total": 67357, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 67357, - "%pct_boys": 0 - }, - { - "name": "Wendy", - "state": "other", - "gender": "girl", - "total": 67117, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 67117, - "%pct_boys": 0 - }, - { - "name": "Jennifer", - "state": "OH", - "gender": "girl", - "total": 66141, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 66141, - "%pct_boys": 0 - }, - { - "name": "Holly", - "state": "other", - "gender": "girl", - "total": 66130, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 66130, - "%pct_boys": 0 - }, - { - "name": "Alexandra", - "state": "other", - "gender": "girl", - "total": 66120, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 66120, - "%pct_boys": 0 - }, - { - "name": "Daniel", - "state": "IL", - "gender": "boy", - "total": 65886, - "SUM(sum_boys)": 65886, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sydney", - "state": "other", - "gender": "girl", - "total": 65370, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 65370, - "%pct_boys": 0 - }, - { - "name": "Robert", - "state": "IL", - "gender": "boy", - "total": 65105, - "SUM(sum_boys)": 65105, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Catherine", - "state": "other", - "gender": "girl", - "total": 64959, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 64959, - "%pct_boys": 0 - }, - { - "name": "Kelsey", - "state": "other", - "gender": "girl", - "total": 64901, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 64901, - "%pct_boys": 0 - }, - { - "name": "Kaitlyn", - "state": "other", - "gender": "girl", - "total": 64862, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 64862, - "%pct_boys": 0 - }, - { - "name": "Connor", - "state": "other", - "gender": "boy", - "total": 64770, - "SUM(sum_boys)": 64770, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Grace", - "state": "other", - "gender": "girl", - "total": 64743, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 64743, - "%pct_boys": 0 - }, - { - "name": "David", - "state": "MI", - "gender": "boy", - "total": 64717, - "SUM(sum_boys)": 64717, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shane", - "state": "other", - "gender": "boy", - "total": 64688, - "SUM(sum_boys)": 64688, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "James", - "state": "FL", - "gender": "boy", - "total": 64316, - "SUM(sum_boys)": 64316, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ian", - "state": "other", - "gender": "boy", - "total": 64315, - "SUM(sum_boys)": 64315, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emily", - "state": "CA", - "gender": "girl", - "total": 63896, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 63896, - "%pct_boys": 0 - }, - { - "name": "Elijah", - "state": "other", - "gender": "boy", - "total": 63703, - "SUM(sum_boys)": 63703, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexander", - "state": "CA", - "gender": "boy", - "total": 63591, - "SUM(sum_boys)": 63591, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amanda", - "state": "CA", - "gender": "girl", - "total": 63554, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 63554, - "%pct_boys": 0 - }, - { - "name": "Nicholas", - "state": "NY", - "gender": "boy", - "total": 63446, - "SUM(sum_boys)": 63446, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alicia", - "state": "other", - "gender": "girl", - "total": 63316, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 63316, - "%pct_boys": 0 - }, - { - "name": "Jason", - "state": "TX", - "gender": "boy", - "total": 62792, - "SUM(sum_boys)": 62792, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "David", - "state": "FL", - "gender": "boy", - "total": 62192, - "SUM(sum_boys)": 62192, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Maria", - "state": "other", - "gender": "girl", - "total": 61975, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 61975, - "%pct_boys": 0 - }, - { - "name": "Phillip", - "state": "other", - "gender": "boy", - "total": 61815, - "SUM(sum_boys)": 61815, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Luis", - "state": "CA", - "gender": "boy", - "total": 61553, - "SUM(sum_boys)": 61553, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jose", - "state": "other", - "gender": "boy", - "total": 61518, - "SUM(sum_boys)": 61518, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jerry", - "state": "other", - "gender": "boy", - "total": 61303, - "SUM(sum_boys)": 61303, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tara", - "state": "other", - "gender": "girl", - "total": 61170, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 61170, - "%pct_boys": 0 - }, - { - "name": "Kristin", - "state": "other", - "gender": "girl", - "total": 61125, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 61125, - "%pct_boys": 0 - }, - { - "name": "Jeffery", - "state": "other", - "gender": "boy", - "total": 60982, - "SUM(sum_boys)": 60982, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacy", - "state": "other", - "gender": "girl", - "total": 60762, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 60762, - "%pct_boys": 0 - }, - { - "name": "Julia", - "state": "other", - "gender": "girl", - "total": 60753, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 60753, - "%pct_boys": 0 - }, - { - "name": "Terry", - "state": "other", - "gender": "boy", - "total": 60551, - "SUM(sum_boys)": 60551, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Richard", - "state": "NY", - "gender": "boy", - "total": 60280, - "SUM(sum_boys)": 60280, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christopher", - "state": "MI", - "gender": "boy", - "total": 60170, - "SUM(sum_boys)": 60170, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Samantha", - "state": "CA", - "gender": "girl", - "total": 60003, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 60003, - "%pct_boys": 0 - }, - { - "name": "Chelsea", - "state": "other", - "gender": "girl", - "total": 59900, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 59900, - "%pct_boys": 0 - }, - { - "name": "Nicole", - "state": "NY", - "gender": "girl", - "total": 59647, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 59647, - "%pct_boys": 0 - }, - { - "name": "Thomas", - "state": "CA", - "gender": "boy", - "total": 59525, - "SUM(sum_boys)": 59525, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Matthew", - "state": "MI", - "gender": "boy", - "total": 59089, - "SUM(sum_boys)": 59089, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mason", - "state": "other", - "gender": "boy", - "total": 59055, - "SUM(sum_boys)": 59055, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "PA", - "gender": "boy", - "total": 59036, - "SUM(sum_boys)": 59036, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donna", - "state": "other", - "gender": "girl", - "total": 58655, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 58655, - "%pct_boys": 0 - }, - { - "name": "Sandra", - "state": "other", - "gender": "girl", - "total": 58649, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 58649, - "%pct_boys": 0 - }, - { - "name": "Aaron", - "state": "CA", - "gender": "boy", - "total": 58480, - "SUM(sum_boys)": 58480, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Peter", - "state": "other", - "gender": "boy", - "total": 58407, - "SUM(sum_boys)": 58407, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "James", - "state": "MI", - "gender": "boy", - "total": 58361, - "SUM(sum_boys)": 58361, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joseph", - "state": "TX", - "gender": "boy", - "total": 58308, - "SUM(sum_boys)": 58308, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jordan", - "state": "other", - "gender": "girl", - "total": 58080, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 58080, - "%pct_boys": 0 - }, - { - "name": "Mark", - "state": "CA", - "gender": "boy", - "total": 58002, - "SUM(sum_boys)": 58002, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lisa", - "state": "CA", - "gender": "girl", - "total": 57887, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 57887, - "%pct_boys": 0 - }, - { - "name": "Joseph", - "state": "IL", - "gender": "boy", - "total": 57852, - "SUM(sum_boys)": 57852, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christopher", - "state": "NJ", - "gender": "boy", - "total": 57680, - "SUM(sum_boys)": 57680, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carlos", - "state": "CA", - "gender": "boy", - "total": 57521, - "SUM(sum_boys)": 57521, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jonathan", - "state": "TX", - "gender": "boy", - "total": 57430, - "SUM(sum_boys)": 57430, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Troy", - "state": "other", - "gender": "boy", - "total": 57125, - "SUM(sum_boys)": 57125, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amanda", - "state": "TX", - "gender": "girl", - "total": 57009, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 57009, - "%pct_boys": 0 - }, - { - "name": "Daniel", - "state": "PA", - "gender": "boy", - "total": 56995, - "SUM(sum_boys)": 56995, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Monica", - "state": "other", - "gender": "girl", - "total": 56796, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 56796, - "%pct_boys": 0 - }, - { - "name": "Jesus", - "state": "CA", - "gender": "boy", - "total": 56737, - "SUM(sum_boys)": 56737, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christina", - "state": "CA", - "gender": "girl", - "total": 56636, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 56636, - "%pct_boys": 0 - }, - { - "name": "Jonathan", - "state": "NY", - "gender": "boy", - "total": 56466, - "SUM(sum_boys)": 56466, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "John", - "state": "FL", - "gender": "boy", - "total": 56425, - "SUM(sum_boys)": 56425, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Robert", - "state": "FL", - "gender": "boy", - "total": 56420, - "SUM(sum_boys)": 56420, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Steven", - "state": "NY", - "gender": "boy", - "total": 56406, - "SUM(sum_boys)": 56406, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacob", - "state": "TX", - "gender": "boy", - "total": 56389, - "SUM(sum_boys)": 56389, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Leslie", - "state": "other", - "gender": "girl", - "total": 56115, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 56115, - "%pct_boys": 0 - }, - { - "name": "Savannah", - "state": "other", - "gender": "girl", - "total": 55978, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 55978, - "%pct_boys": 0 - }, - { - "name": "John", - "state": "NJ", - "gender": "boy", - "total": 55801, - "SUM(sum_boys)": 55801, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Robert", - "state": "MI", - "gender": "boy", - "total": 55716, - "SUM(sum_boys)": 55716, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brandon", - "state": "TX", - "gender": "boy", - "total": 55610, - "SUM(sum_boys)": 55610, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jennifer", - "state": "MI", - "gender": "girl", - "total": 55561, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 55561, - "%pct_boys": 0 - }, - { - "name": "Craig", - "state": "other", - "gender": "boy", - "total": 55540, - "SUM(sum_boys)": 55540, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elizabeth", - "state": "TX", - "gender": "girl", - "total": 55432, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 55432, - "%pct_boys": 0 - }, - { - "name": "Joshua", - "state": "NY", - "gender": "boy", - "total": 55333, - "SUM(sum_boys)": 55333, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michelle", - "state": "NY", - "gender": "girl", - "total": 55202, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 55202, - "%pct_boys": 0 - }, - { - "name": "Joseph", - "state": "OH", - "gender": "boy", - "total": 55193, - "SUM(sum_boys)": 55193, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lucas", - "state": "other", - "gender": "boy", - "total": 54814, - "SUM(sum_boys)": 54814, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lisa", - "state": "NY", - "gender": "girl", - "total": 54741, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 54741, - "%pct_boys": 0 - }, - { - "name": "Brenda", - "state": "other", - "gender": "girl", - "total": 54686, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 54686, - "%pct_boys": 0 - }, - { - "name": "Stephanie", - "state": "TX", - "gender": "girl", - "total": 54449, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 54449, - "%pct_boys": 0 - }, - { - "name": "Christian", - "state": "CA", - "gender": "boy", - "total": 54129, - "SUM(sum_boys)": 54129, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brian", - "state": "PA", - "gender": "boy", - "total": 53915, - "SUM(sum_boys)": 53915, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Vanessa", - "state": "CA", - "gender": "girl", - "total": 53908, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 53908, - "%pct_boys": 0 - }, - { - "name": "Jeffrey", - "state": "CA", - "gender": "boy", - "total": 53893, - "SUM(sum_boys)": 53893, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Justin", - "state": "TX", - "gender": "boy", - "total": 53877, - "SUM(sum_boys)": 53877, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaac", - "state": "other", - "gender": "boy", - "total": 53693, - "SUM(sum_boys)": 53693, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katelyn", - "state": "other", - "gender": "girl", - "total": 53539, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 53539, - "%pct_boys": 0 - }, - { - "name": "Andrew", - "state": "TX", - "gender": "boy", - "total": 53524, - "SUM(sum_boys)": 53524, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elizabeth", - "state": "NY", - "gender": "girl", - "total": 53156, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 53156, - "%pct_boys": 0 - }, - { - "name": "Eric", - "state": "NY", - "gender": "boy", - "total": 53054, - "SUM(sum_boys)": 53054, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "OH", - "gender": "boy", - "total": 52937, - "SUM(sum_boys)": 52937, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carrie", - "state": "other", - "gender": "girl", - "total": 52709, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 52709, - "%pct_boys": 0 - }, - { - "name": "Brian", - "state": "OH", - "gender": "boy", - "total": 52584, - "SUM(sum_boys)": 52584, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isabella", - "state": "other", - "gender": "girl", - "total": 52442, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 52442, - "%pct_boys": 0 - }, - { - "name": "Joshua", - "state": "OH", - "gender": "boy", - "total": 52355, - "SUM(sum_boys)": 52355, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sharon", - "state": "other", - "gender": "girl", - "total": 52274, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 52274, - "%pct_boys": 0 - }, - { - "name": "Melanie", - "state": "other", - "gender": "girl", - "total": 52024, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 52024, - "%pct_boys": 0 - }, - { - "name": "Brian", - "state": "IL", - "gender": "boy", - "total": 51739, - "SUM(sum_boys)": 51739, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anthony", - "state": "TX", - "gender": "boy", - "total": 51647, - "SUM(sum_boys)": 51647, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jack", - "state": "other", - "gender": "boy", - "total": 51202, - "SUM(sum_boys)": 51202, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Matthew", - "state": "FL", - "gender": "boy", - "total": 51145, - "SUM(sum_boys)": 51145, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joseph", - "state": "NJ", - "gender": "boy", - "total": 51143, - "SUM(sum_boys)": 51143, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ryan", - "state": "NY", - "gender": "boy", - "total": 51100, - "SUM(sum_boys)": 51100, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sean", - "state": "CA", - "gender": "boy", - "total": 51068, - "SUM(sum_boys)": 51068, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melissa", - "state": "NY", - "gender": "girl", - "total": 51056, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 51056, - "%pct_boys": 0 - }, - { - "name": "Dana", - "state": "other", - "gender": "girl", - "total": 51056, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 51056, - "%pct_boys": 0 - }, - { - "name": "Jennifer", - "state": "FL", - "gender": "girl", - "total": 50954, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 50954, - "%pct_boys": 0 - }, - { - "name": "Maria", - "state": "TX", - "gender": "girl", - "total": 50770, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 50770, - "%pct_boys": 0 - }, - { - "name": "Andrea", - "state": "CA", - "gender": "girl", - "total": 50754, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 50754, - "%pct_boys": 0 - }, - { - "name": "Isaiah", - "state": "other", - "gender": "boy", - "total": 50700, - "SUM(sum_boys)": 50700, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joshua", - "state": "FL", - "gender": "boy", - "total": 50667, - "SUM(sum_boys)": 50667, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melissa", - "state": "TX", - "gender": "girl", - "total": 50420, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 50420, - "%pct_boys": 0 - }, - { - "name": "Margaret", - "state": "other", - "gender": "girl", - "total": 50377, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 50377, - "%pct_boys": 0 - }, - { - "name": "Jason", - "state": "OH", - "gender": "boy", - "total": 50371, - "SUM(sum_boys)": 50371, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "John", - "state": "MI", - "gender": "boy", - "total": 50189, - "SUM(sum_boys)": 50189, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "TX", - "gender": "boy", - "total": 49985, - "SUM(sum_boys)": 49985, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Antonio", - "state": "other", - "gender": "boy", - "total": 49826, - "SUM(sum_boys)": 49826, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Robin", - "state": "other", - "gender": "girl", - "total": 49811, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 49811, - "%pct_boys": 0 - }, - { - "name": "Destiny", - "state": "other", - "gender": "girl", - "total": 49681, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 49681, - "%pct_boys": 0 - }, - { - "name": "Christopher", - "state": "MA", - "gender": "boy", - "total": 49619, - "SUM(sum_boys)": 49619, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sarah", - "state": "TX", - "gender": "girl", - "total": 49484, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 49484, - "%pct_boys": 0 - }, - { - "name": "Robert", - "state": "NJ", - "gender": "boy", - "total": 49421, - "SUM(sum_boys)": 49421, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anthony", - "state": "IL", - "gender": "boy", - "total": 49394, - "SUM(sum_boys)": 49394, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacey", - "state": "other", - "gender": "girl", - "total": 49210, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 49210, - "%pct_boys": 0 - }, - { - "name": "Andrew", - "state": "OH", - "gender": "boy", - "total": 49187, - "SUM(sum_boys)": 49187, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "David", - "state": "NJ", - "gender": "boy", - "total": 49043, - "SUM(sum_boys)": 49043, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Daniel", - "state": "OH", - "gender": "boy", - "total": 49035, - "SUM(sum_boys)": 49035, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Timothy", - "state": "CA", - "gender": "boy", - "total": 48896, - "SUM(sum_boys)": 48896, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rodney", - "state": "other", - "gender": "boy", - "total": 48888, - "SUM(sum_boys)": 48888, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Daniel", - "state": "FL", - "gender": "boy", - "total": 48886, - "SUM(sum_boys)": 48886, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "FL", - "gender": "boy", - "total": 48452, - "SUM(sum_boys)": 48452, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "IL", - "gender": "boy", - "total": 48397, - "SUM(sum_boys)": 48397, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Linda", - "state": "other", - "gender": "girl", - "total": 48376, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 48376, - "%pct_boys": 0 - }, - { - "name": "Justin", - "state": "NY", - "gender": "boy", - "total": 48304, - "SUM(sum_boys)": 48304, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacqueline", - "state": "other", - "gender": "girl", - "total": 48122, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 48122, - "%pct_boys": 0 - }, - { - "name": "Andrew", - "state": "PA", - "gender": "boy", - "total": 47775, - "SUM(sum_boys)": 47775, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kimberly", - "state": "TX", - "gender": "girl", - "total": 47555, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 47555, - "%pct_boys": 0 - }, - { - "name": "John", - "state": "MA", - "gender": "boy", - "total": 47541, - "SUM(sum_boys)": 47541, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Matthew", - "state": "NJ", - "gender": "boy", - "total": 47300, - "SUM(sum_boys)": 47300, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Eric", - "state": "TX", - "gender": "boy", - "total": 47245, - "SUM(sum_boys)": 47245, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Randy", - "state": "other", - "gender": "boy", - "total": 47240, - "SUM(sum_boys)": 47240, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jason", - "state": "PA", - "gender": "boy", - "total": 46992, - "SUM(sum_boys)": 46992, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dennis", - "state": "other", - "gender": "boy", - "total": 46927, - "SUM(sum_boys)": 46927, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Thomas", - "state": "PA", - "gender": "boy", - "total": 46861, - "SUM(sum_boys)": 46861, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Deborah", - "state": "other", - "gender": "girl", - "total": 46784, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 46784, - "%pct_boys": 0 - }, - { - "name": "Bryan", - "state": "CA", - "gender": "boy", - "total": 46670, - "SUM(sum_boys)": 46670, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Matthew", - "state": "MA", - "gender": "boy", - "total": 46238, - "SUM(sum_boys)": 46238, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adam", - "state": "CA", - "gender": "boy", - "total": 46210, - "SUM(sum_boys)": 46210, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Benjamin", - "state": "CA", - "gender": "boy", - "total": 46188, - "SUM(sum_boys)": 46188, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jenna", - "state": "other", - "gender": "girl", - "total": 46080, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 46080, - "%pct_boys": 0 - }, - { - "name": "Nathan", - "state": "CA", - "gender": "boy", - "total": 45939, - "SUM(sum_boys)": 45939, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rhonda", - "state": "other", - "gender": "girl", - "total": 45930, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 45930, - "%pct_boys": 0 - }, - { - "name": "Laura", - "state": "CA", - "gender": "girl", - "total": 45759, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 45759, - "%pct_boys": 0 - }, - { - "name": "Tony", - "state": "other", - "gender": "boy", - "total": 45743, - "SUM(sum_boys)": 45743, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sarah", - "state": "NY", - "gender": "girl", - "total": 45705, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 45705, - "%pct_boys": 0 - }, - { - "name": "Ryan", - "state": "PA", - "gender": "boy", - "total": 45543, - "SUM(sum_boys)": 45543, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stephanie", - "state": "NY", - "gender": "girl", - "total": 45465, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 45465, - "%pct_boys": 0 - }, - { - "name": "Mark", - "state": "NY", - "gender": "boy", - "total": 45461, - "SUM(sum_boys)": 45461, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amy", - "state": "CA", - "gender": "girl", - "total": 45426, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 45426, - "%pct_boys": 0 - }, - { - "name": "Angel", - "state": "CA", - "gender": "boy", - "total": 45336, - "SUM(sum_boys)": 45336, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sophia", - "state": "other", - "gender": "girl", - "total": 45320, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 45320, - "%pct_boys": 0 - }, - { - "name": "Jessica", - "state": "FL", - "gender": "girl", - "total": 45278, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 45278, - "%pct_boys": 0 - }, - { - "name": "Ryan", - "state": "TX", - "gender": "boy", - "total": 44966, - "SUM(sum_boys)": 44966, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cassandra", - "state": "other", - "gender": "girl", - "total": 44850, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 44850, - "%pct_boys": 0 - }, - { - "name": "Jill", - "state": "other", - "gender": "girl", - "total": 44664, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 44664, - "%pct_boys": 0 - }, - { - "name": "Gabriel", - "state": "CA", - "gender": "boy", - "total": 44663, - "SUM(sum_boys)": 44663, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amanda", - "state": "NY", - "gender": "girl", - "total": 44648, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 44648, - "%pct_boys": 0 - }, - { - "name": "Joshua", - "state": "PA", - "gender": "boy", - "total": 44572, - "SUM(sum_boys)": 44572, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrew", - "state": "IL", - "gender": "boy", - "total": 44569, - "SUM(sum_boys)": 44569, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "James", - "state": "NJ", - "gender": "boy", - "total": 44501, - "SUM(sum_boys)": 44501, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jason", - "state": "IL", - "gender": "boy", - "total": 44467, - "SUM(sum_boys)": 44467, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Raymond", - "state": "other", - "gender": "boy", - "total": 44455, - "SUM(sum_boys)": 44455, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jennifer", - "state": "NJ", - "gender": "girl", - "total": 44390, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 44390, - "%pct_boys": 0 - }, - { - "name": "Joseph", - "state": "MI", - "gender": "boy", - "total": 44378, - "SUM(sum_boys)": 44378, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jessica", - "state": "IL", - "gender": "girl", - "total": 44265, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 44265, - "%pct_boys": 0 - }, - { - "name": "David", - "state": "MA", - "gender": "boy", - "total": 44211, - "SUM(sum_boys)": 44211, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emily", - "state": "TX", - "gender": "girl", - "total": 44077, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 44077, - "%pct_boys": 0 - }, - { - "name": "Rebecca", - "state": "CA", - "gender": "girl", - "total": 44026, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 44026, - "%pct_boys": 0 - }, - { - "name": "Jason", - "state": "MI", - "gender": "boy", - "total": 43971, - "SUM(sum_boys)": 43971, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ashley", - "state": "NY", - "gender": "girl", - "total": 43831, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 43831, - "%pct_boys": 0 - }, - { - "name": "Paul", - "state": "CA", - "gender": "boy", - "total": 43823, - "SUM(sum_boys)": 43823, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angela", - "state": "CA", - "gender": "girl", - "total": 43775, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 43775, - "%pct_boys": 0 - }, - { - "name": "Scott", - "state": "CA", - "gender": "boy", - "total": 43761, - "SUM(sum_boys)": 43761, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jessica", - "state": "OH", - "gender": "girl", - "total": 43756, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 43756, - "%pct_boys": 0 - }, - { - "name": "Joseph", - "state": "FL", - "gender": "boy", - "total": 43743, - "SUM(sum_boys)": 43743, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jessica", - "state": "PA", - "gender": "girl", - "total": 43480, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 43480, - "%pct_boys": 0 - }, - { - "name": "Joshua", - "state": "IL", - "gender": "boy", - "total": 43319, - "SUM(sum_boys)": 43319, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "IL", - "gender": "boy", - "total": 43310, - "SUM(sum_boys)": 43310, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeffrey", - "state": "NY", - "gender": "boy", - "total": 43306, - "SUM(sum_boys)": 43306, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Samuel", - "state": "CA", - "gender": "boy", - "total": 43303, - "SUM(sum_boys)": 43303, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Daniel", - "state": "MI", - "gender": "boy", - "total": 43133, - "SUM(sum_boys)": 43133, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Miguel", - "state": "CA", - "gender": "boy", - "total": 43001, - "SUM(sum_boys)": 43001, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rachel", - "state": "CA", - "gender": "girl", - "total": 42928, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 42928, - "%pct_boys": 0 - }, - { - "name": "Tyler", - "state": "CA", - "gender": "boy", - "total": 42802, - "SUM(sum_boys)": 42802, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Timothy", - "state": "NY", - "gender": "boy", - "total": 42762, - "SUM(sum_boys)": 42762, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "other", - "gender": "boy", - "total": 42505, - "SUM(sum_boys)": 42505, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Daniel", - "state": "NJ", - "gender": "boy", - "total": 42501, - "SUM(sum_boys)": 42501, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kyle", - "state": "CA", - "gender": "boy", - "total": 42214, - "SUM(sum_boys)": 42214, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Richard", - "state": "TX", - "gender": "boy", - "total": 42112, - "SUM(sum_boys)": 42112, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Heather", - "state": "CA", - "gender": "girl", - "total": 42054, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 42054, - "%pct_boys": 0 - }, - { - "name": "Michelle", - "state": "TX", - "gender": "girl", - "total": 41984, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 41984, - "%pct_boys": 0 - }, - { - "name": "Natalie", - "state": "CA", - "gender": "girl", - "total": 41894, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 41894, - "%pct_boys": 0 - }, - { - "name": "Ryan", - "state": "OH", - "gender": "boy", - "total": 41863, - "SUM(sum_boys)": 41863, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ryan", - "state": "IL", - "gender": "boy", - "total": 41729, - "SUM(sum_boys)": 41729, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ashley", - "state": "FL", - "gender": "girl", - "total": 41656, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 41656, - "%pct_boys": 0 - }, - { - "name": "Anthony", - "state": "PA", - "gender": "boy", - "total": 41610, - "SUM(sum_boys)": 41610, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrew", - "state": "MI", - "gender": "boy", - "total": 41568, - "SUM(sum_boys)": 41568, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Barbara", - "state": "other", - "gender": "girl", - "total": 41521, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 41521, - "%pct_boys": 0 - }, - { - "name": "Anthony", - "state": "FL", - "gender": "boy", - "total": 41169, - "SUM(sum_boys)": 41169, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jesus", - "state": "TX", - "gender": "boy", - "total": 41075, - "SUM(sum_boys)": 41075, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kimberly", - "state": "NY", - "gender": "girl", - "total": 40980, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 40980, - "%pct_boys": 0 - }, - { - "name": "Thomas", - "state": "IL", - "gender": "boy", - "total": 40866, - "SUM(sum_boys)": 40866, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cynthia", - "state": "CA", - "gender": "girl", - "total": 40804, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 40804, - "%pct_boys": 0 - }, - { - "name": "Victor", - "state": "CA", - "gender": "boy", - "total": 40733, - "SUM(sum_boys)": 40733, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anthony", - "state": "OH", - "gender": "boy", - "total": 40732, - "SUM(sum_boys)": 40732, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joshua", - "state": "MI", - "gender": "boy", - "total": 40412, - "SUM(sum_boys)": 40412, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jesse", - "state": "CA", - "gender": "boy", - "total": 40171, - "SUM(sum_boys)": 40171, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paul", - "state": "NY", - "gender": "boy", - "total": 40144, - "SUM(sum_boys)": 40144, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicholas", - "state": "IL", - "gender": "boy", - "total": 40117, - "SUM(sum_boys)": 40117, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Denise", - "state": "other", - "gender": "girl", - "total": 39953, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 39953, - "%pct_boys": 0 - }, - { - "name": "Lauren", - "state": "CA", - "gender": "girl", - "total": 39716, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 39716, - "%pct_boys": 0 - }, - { - "name": "Brian", - "state": "TX", - "gender": "boy", - "total": 39669, - "SUM(sum_boys)": 39669, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Eric", - "state": "IL", - "gender": "boy", - "total": 39520, - "SUM(sum_boys)": 39520, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michelle", - "state": "IL", - "gender": "girl", - "total": 39305, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 39305, - "%pct_boys": 0 - }, - { - "name": "Nicholas", - "state": "OH", - "gender": "boy", - "total": 39284, - "SUM(sum_boys)": 39284, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "PA", - "gender": "boy", - "total": 39211, - "SUM(sum_boys)": 39211, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Samantha", - "state": "NY", - "gender": "girl", - "total": 39083, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 39083, - "%pct_boys": 0 - }, - { - "name": "Thomas", - "state": "OH", - "gender": "boy", - "total": 39072, - "SUM(sum_boys)": 39072, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "James", - "state": "MA", - "gender": "boy", - "total": 39056, - "SUM(sum_boys)": 39056, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adrian", - "state": "CA", - "gender": "boy", - "total": 39014, - "SUM(sum_boys)": 39014, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sarah", - "state": "OH", - "gender": "girl", - "total": 39001, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 39001, - "%pct_boys": 0 - }, - { - "name": "Diana", - "state": "CA", - "gender": "girl", - "total": 38906, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 38906, - "%pct_boys": 0 - }, - { - "name": "Kathleen", - "state": "other", - "gender": "girl", - "total": 38892, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 38892, - "%pct_boys": 0 - }, - { - "name": "Brian", - "state": "MI", - "gender": "boy", - "total": 38858, - "SUM(sum_boys)": 38858, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elizabeth", - "state": "IL", - "gender": "girl", - "total": 38506, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 38506, - "%pct_boys": 0 - }, - { - "name": "Mark", - "state": "TX", - "gender": "boy", - "total": 38323, - "SUM(sum_boys)": 38323, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victoria", - "state": "CA", - "gender": "girl", - "total": 38143, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 38143, - "%pct_boys": 0 - }, - { - "name": "Charles", - "state": "TX", - "gender": "boy", - "total": 38138, - "SUM(sum_boys)": 38138, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Luis", - "state": "TX", - "gender": "boy", - "total": 38119, - "SUM(sum_boys)": 38119, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cheryl", - "state": "other", - "gender": "girl", - "total": 38118, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 38118, - "%pct_boys": 0 - }, - { - "name": "Anthony", - "state": "NJ", - "gender": "boy", - "total": 37995, - "SUM(sum_boys)": 37995, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Steven", - "state": "TX", - "gender": "boy", - "total": 37947, - "SUM(sum_boys)": 37947, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emily", - "state": "NY", - "gender": "girl", - "total": 37938, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 37938, - "%pct_boys": 0 - }, - { - "name": "Jennifer", - "state": "MA", - "gender": "girl", - "total": 37870, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 37870, - "%pct_boys": 0 - }, - { - "name": "Russell", - "state": "other", - "gender": "boy", - "total": 37757, - "SUM(sum_boys)": 37757, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amy", - "state": "TX", - "gender": "girl", - "total": 37685, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 37685, - "%pct_boys": 0 - }, - { - "name": "Katherine", - "state": "CA", - "gender": "girl", - "total": 37636, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 37636, - "%pct_boys": 0 - }, - { - "name": "Amanda", - "state": "OH", - "gender": "girl", - "total": 37503, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 37503, - "%pct_boys": 0 - }, - { - "name": "Eric", - "state": "PA", - "gender": "boy", - "total": 37273, - "SUM(sum_boys)": 37273, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mark", - "state": "PA", - "gender": "boy", - "total": 37213, - "SUM(sum_boys)": 37213, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicholas", - "state": "PA", - "gender": "boy", - "total": 37187, - "SUM(sum_boys)": 37187, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Danielle", - "state": "CA", - "gender": "girl", - "total": 37177, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 37177, - "%pct_boys": 0 - }, - { - "name": "Ryan", - "state": "MI", - "gender": "boy", - "total": 37161, - "SUM(sum_boys)": 37161, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Megan", - "state": "CA", - "gender": "girl", - "total": 37157, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 37157, - "%pct_boys": 0 - }, - { - "name": "Scott", - "state": "NY", - "gender": "boy", - "total": 37145, - "SUM(sum_boys)": 37145, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Aaron", - "state": "TX", - "gender": "boy", - "total": 37124, - "SUM(sum_boys)": 37124, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Timothy", - "state": "OH", - "gender": "boy", - "total": 37080, - "SUM(sum_boys)": 37080, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Richard", - "state": "PA", - "gender": "boy", - "total": 37047, - "SUM(sum_boys)": 37047, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Peter", - "state": "NY", - "gender": "boy", - "total": 36989, - "SUM(sum_boys)": 36989, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Danielle", - "state": "NY", - "gender": "girl", - "total": 36987, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 36987, - "%pct_boys": 0 - }, - { - "name": "Robert", - "state": "MA", - "gender": "boy", - "total": 36917, - "SUM(sum_boys)": 36917, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "MI", - "gender": "boy", - "total": 36910, - "SUM(sum_boys)": 36910, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christine", - "state": "NY", - "gender": "girl", - "total": 36830, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 36830, - "%pct_boys": 0 - }, - { - "name": "Timothy", - "state": "IL", - "gender": "boy", - "total": 36808, - "SUM(sum_boys)": 36808, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacob", - "state": "OH", - "gender": "boy", - "total": 36573, - "SUM(sum_boys)": 36573, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Thomas", - "state": "TX", - "gender": "boy", - "total": 36534, - "SUM(sum_boys)": 36534, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lisa", - "state": "PA", - "gender": "girl", - "total": 36523, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 36523, - "%pct_boys": 0 - }, - { - "name": "Samantha", - "state": "TX", - "gender": "girl", - "total": 36505, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 36505, - "%pct_boys": 0 - }, - { - "name": "Jessica", - "state": "MI", - "gender": "girl", - "total": 36460, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 36460, - "%pct_boys": 0 - }, - { - "name": "Sean", - "state": "NY", - "gender": "boy", - "total": 36260, - "SUM(sum_boys)": 36260, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "OH", - "gender": "boy", - "total": 36228, - "SUM(sum_boys)": 36228, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Monica", - "state": "CA", - "gender": "girl", - "total": 36069, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 36069, - "%pct_boys": 0 - }, - { - "name": "Alexander", - "state": "NY", - "gender": "boy", - "total": 35993, - "SUM(sum_boys)": 35993, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joel", - "state": "other", - "gender": "boy", - "total": 35947, - "SUM(sum_boys)": 35947, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "NJ", - "gender": "boy", - "total": 35864, - "SUM(sum_boys)": 35864, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Eric", - "state": "OH", - "gender": "boy", - "total": 35732, - "SUM(sum_boys)": 35732, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Daniel", - "state": "MA", - "gender": "boy", - "total": 35722, - "SUM(sum_boys)": 35722, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicholas", - "state": "TX", - "gender": "boy", - "total": 35689, - "SUM(sum_boys)": 35689, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ashley", - "state": "OH", - "gender": "girl", - "total": 35668, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 35668, - "%pct_boys": 0 - }, - { - "name": "Jason", - "state": "FL", - "gender": "boy", - "total": 35621, - "SUM(sum_boys)": 35621, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Timothy", - "state": "PA", - "gender": "boy", - "total": 35596, - "SUM(sum_boys)": 35596, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Charles", - "state": "CA", - "gender": "boy", - "total": 35529, - "SUM(sum_boys)": 35529, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Steven", - "state": "IL", - "gender": "boy", - "total": 35528, - "SUM(sum_boys)": 35528, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Laura", - "state": "TX", - "gender": "girl", - "total": 35458, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 35458, - "%pct_boys": 0 - }, - { - "name": "Sarah", - "state": "IL", - "gender": "girl", - "total": 35391, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 35391, - "%pct_boys": 0 - }, - { - "name": "Mark", - "state": "OH", - "gender": "boy", - "total": 35314, - "SUM(sum_boys)": 35314, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacqueline", - "state": "CA", - "gender": "girl", - "total": 35196, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 35196, - "%pct_boys": 0 - }, - { - "name": "Nicole", - "state": "PA", - "gender": "girl", - "total": 35150, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 35150, - "%pct_boys": 0 - }, - { - "name": "Alyssa", - "state": "CA", - "gender": "girl", - "total": 35130, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 35130, - "%pct_boys": 0 - }, - { - "name": "Joseph", - "state": "MA", - "gender": "boy", - "total": 35094, - "SUM(sum_boys)": 35094, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Crystal", - "state": "CA", - "gender": "girl", - "total": 35041, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 35041, - "%pct_boys": 0 - }, - { - "name": "Angela", - "state": "TX", - "gender": "girl", - "total": 35040, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 35040, - "%pct_boys": 0 - }, - { - "name": "Carlos", - "state": "TX", - "gender": "boy", - "total": 35020, - "SUM(sum_boys)": 35020, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michelle", - "state": "OH", - "gender": "girl", - "total": 34877, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 34877, - "%pct_boys": 0 - }, - { - "name": "Melissa", - "state": "PA", - "gender": "girl", - "total": 34875, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 34875, - "%pct_boys": 0 - }, - { - "name": "Adam", - "state": "NY", - "gender": "boy", - "total": 34852, - "SUM(sum_boys)": 34852, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amy", - "state": "OH", - "gender": "girl", - "total": 34776, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 34776, - "%pct_boys": 0 - }, - { - "name": "Sherry", - "state": "other", - "gender": "girl", - "total": 34755, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 34755, - "%pct_boys": 0 - }, - { - "name": "Amanda", - "state": "PA", - "gender": "girl", - "total": 34696, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 34696, - "%pct_boys": 0 - }, - { - "name": "Lisa", - "state": "OH", - "gender": "girl", - "total": 34542, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 34542, - "%pct_boys": 0 - }, - { - "name": "Kelly", - "state": "CA", - "gender": "girl", - "total": 34493, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 34493, - "%pct_boys": 0 - }, - { - "name": "Brian", - "state": "NJ", - "gender": "boy", - "total": 34490, - "SUM(sum_boys)": 34490, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brandon", - "state": "NY", - "gender": "boy", - "total": 34353, - "SUM(sum_boys)": 34353, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Zachary", - "state": "CA", - "gender": "boy", - "total": 34338, - "SUM(sum_boys)": 34338, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christina", - "state": "NY", - "gender": "girl", - "total": 34335, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 34335, - "%pct_boys": 0 - }, - { - "name": "Patrick", - "state": "NY", - "gender": "boy", - "total": 34301, - "SUM(sum_boys)": 34301, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melissa", - "state": "OH", - "gender": "girl", - "total": 34097, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 34097, - "%pct_boys": 0 - }, - { - "name": "Jonathan", - "state": "FL", - "gender": "boy", - "total": 34040, - "SUM(sum_boys)": 34040, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeffrey", - "state": "PA", - "gender": "boy", - "total": 34017, - "SUM(sum_boys)": 34017, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michele", - "state": "other", - "gender": "girl", - "total": 33886, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 33886, - "%pct_boys": 0 - }, - { - "name": "Jasmine", - "state": "CA", - "gender": "girl", - "total": 33754, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 33754, - "%pct_boys": 0 - }, - { - "name": "Lauren", - "state": "TX", - "gender": "girl", - "total": 33749, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 33749, - "%pct_boys": 0 - }, - { - "name": "Mark", - "state": "IL", - "gender": "boy", - "total": 33738, - "SUM(sum_boys)": 33738, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeffrey", - "state": "OH", - "gender": "boy", - "total": 33727, - "SUM(sum_boys)": 33727, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Karen", - "state": "CA", - "gender": "girl", - "total": 33719, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 33719, - "%pct_boys": 0 - }, - { - "name": "Charles", - "state": "NY", - "gender": "boy", - "total": 33714, - "SUM(sum_boys)": 33714, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Thomas", - "state": "NJ", - "gender": "boy", - "total": 33657, - "SUM(sum_boys)": 33657, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amber", - "state": "CA", - "gender": "girl", - "total": 33565, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 33565, - "%pct_boys": 0 - }, - { - "name": "Elizabeth", - "state": "OH", - "gender": "girl", - "total": 33536, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 33536, - "%pct_boys": 0 - }, - { - "name": "Debra", - "state": "other", - "gender": "girl", - "total": 33437, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 33437, - "%pct_boys": 0 - }, - { - "name": "Anthony", - "state": "MI", - "gender": "boy", - "total": 33355, - "SUM(sum_boys)": 33355, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sarah", - "state": "MI", - "gender": "girl", - "total": 33316, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 33316, - "%pct_boys": 0 - }, - { - "name": "Amanda", - "state": "FL", - "gender": "girl", - "total": 33163, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 33163, - "%pct_boys": 0 - }, - { - "name": "Steven", - "state": "OH", - "gender": "boy", - "total": 33049, - "SUM(sum_boys)": 33049, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicholas", - "state": "MI", - "gender": "boy", - "total": 33032, - "SUM(sum_boys)": 33032, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ryan", - "state": "FL", - "gender": "boy", - "total": 32934, - "SUM(sum_boys)": 32934, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paula", - "state": "other", - "gender": "girl", - "total": 32921, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 32921, - "%pct_boys": 0 - }, - { - "name": "Lisa", - "state": "IL", - "gender": "girl", - "total": 32868, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 32868, - "%pct_boys": 0 - }, - { - "name": "Ashley", - "state": "IL", - "gender": "girl", - "total": 32856, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 32856, - "%pct_boys": 0 - }, - { - "name": "Kimberly", - "state": "IL", - "gender": "girl", - "total": 32849, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 32849, - "%pct_boys": 0 - }, - { - "name": "Brandon", - "state": "OH", - "gender": "boy", - "total": 32620, - "SUM(sum_boys)": 32620, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Vanessa", - "state": "other", - "gender": "girl", - "total": 32612, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 32612, - "%pct_boys": 0 - }, - { - "name": "Jacob", - "state": "IL", - "gender": "boy", - "total": 32600, - "SUM(sum_boys)": 32600, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Steven", - "state": "MI", - "gender": "boy", - "total": 32560, - "SUM(sum_boys)": 32560, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "MI", - "gender": "boy", - "total": 32541, - "SUM(sum_boys)": 32541, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacob", - "state": "MI", - "gender": "boy", - "total": 32482, - "SUM(sum_boys)": 32482, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Eric", - "state": "MI", - "gender": "boy", - "total": 32466, - "SUM(sum_boys)": 32466, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stephen", - "state": "NY", - "gender": "boy", - "total": 32390, - "SUM(sum_boys)": 32390, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Justin", - "state": "PA", - "gender": "boy", - "total": 32366, - "SUM(sum_boys)": 32366, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrew", - "state": "FL", - "gender": "boy", - "total": 32300, - "SUM(sum_boys)": 32300, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amy", - "state": "NY", - "gender": "girl", - "total": 32264, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 32264, - "%pct_boys": 0 - }, - { - "name": "Nicole", - "state": "IL", - "gender": "girl", - "total": 32256, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 32256, - "%pct_boys": 0 - }, - { - "name": "Justin", - "state": "FL", - "gender": "boy", - "total": 32123, - "SUM(sum_boys)": 32123, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ashley", - "state": "PA", - "gender": "girl", - "total": 32043, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 32043, - "%pct_boys": 0 - }, - { - "name": "Mary", - "state": "TX", - "gender": "girl", - "total": 31980, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31980, - "%pct_boys": 0 - }, - { - "name": "Sarah", - "state": "PA", - "gender": "girl", - "total": 31851, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31851, - "%pct_boys": 0 - }, - { - "name": "Patrick", - "state": "CA", - "gender": "boy", - "total": 31851, - "SUM(sum_boys)": 31851, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Thomas", - "state": "MI", - "gender": "boy", - "total": 31834, - "SUM(sum_boys)": 31834, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rebecca", - "state": "TX", - "gender": "girl", - "total": 31826, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31826, - "%pct_boys": 0 - }, - { - "name": "Jeremy", - "state": "CA", - "gender": "boy", - "total": 31810, - "SUM(sum_boys)": 31810, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Richard", - "state": "OH", - "gender": "boy", - "total": 31757, - "SUM(sum_boys)": 31757, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amy", - "state": "PA", - "gender": "girl", - "total": 31725, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31725, - "%pct_boys": 0 - }, - { - "name": "Tiffany", - "state": "CA", - "gender": "girl", - "total": 31609, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31609, - "%pct_boys": 0 - }, - { - "name": "Jose", - "state": "NY", - "gender": "boy", - "total": 31594, - "SUM(sum_boys)": 31594, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kenneth", - "state": "CA", - "gender": "boy", - "total": 31565, - "SUM(sum_boys)": 31565, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicholas", - "state": "FL", - "gender": "boy", - "total": 31547, - "SUM(sum_boys)": 31547, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melissa", - "state": "IL", - "gender": "girl", - "total": 31430, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31430, - "%pct_boys": 0 - }, - { - "name": "Lisa", - "state": "TX", - "gender": "girl", - "total": 31426, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31426, - "%pct_boys": 0 - }, - { - "name": "Steven", - "state": "PA", - "gender": "boy", - "total": 31420, - "SUM(sum_boys)": 31420, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michelle", - "state": "PA", - "gender": "girl", - "total": 31400, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31400, - "%pct_boys": 0 - }, - { - "name": "Rachel", - "state": "NY", - "gender": "girl", - "total": 31301, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31301, - "%pct_boys": 0 - }, - { - "name": "Edward", - "state": "CA", - "gender": "boy", - "total": 31290, - "SUM(sum_boys)": 31290, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "NJ", - "gender": "boy", - "total": 31248, - "SUM(sum_boys)": 31248, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "FL", - "gender": "boy", - "total": 31145, - "SUM(sum_boys)": 31145, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amanda", - "state": "IL", - "gender": "girl", - "total": 31123, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31123, - "%pct_boys": 0 - }, - { - "name": "Scott", - "state": "MI", - "gender": "boy", - "total": 31103, - "SUM(sum_boys)": 31103, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Theresa", - "state": "other", - "gender": "girl", - "total": 31077, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31077, - "%pct_boys": 0 - }, - { - "name": "Samuel", - "state": "TX", - "gender": "boy", - "total": 31060, - "SUM(sum_boys)": 31060, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kimberly", - "state": "OH", - "gender": "girl", - "total": 31000, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 31000, - "%pct_boys": 0 - }, - { - "name": "Justin", - "state": "OH", - "gender": "boy", - "total": 30993, - "SUM(sum_boys)": 30993, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Scott", - "state": "OH", - "gender": "boy", - "total": 30982, - "SUM(sum_boys)": 30982, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elizabeth", - "state": "PA", - "gender": "girl", - "total": 30946, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30946, - "%pct_boys": 0 - }, - { - "name": "Jessica", - "state": "NJ", - "gender": "girl", - "total": 30891, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30891, - "%pct_boys": 0 - }, - { - "name": "Nancy", - "state": "other", - "gender": "girl", - "total": 30870, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30870, - "%pct_boys": 0 - }, - { - "name": "Christine", - "state": "CA", - "gender": "girl", - "total": 30721, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30721, - "%pct_boys": 0 - }, - { - "name": "Emily", - "state": "OH", - "gender": "girl", - "total": 30640, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30640, - "%pct_boys": 0 - }, - { - "name": "Brandon", - "state": "FL", - "gender": "boy", - "total": 30630, - "SUM(sum_boys)": 30630, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelly", - "state": "NY", - "gender": "girl", - "total": 30569, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30569, - "%pct_boys": 0 - }, - { - "name": "Richard", - "state": "IL", - "gender": "boy", - "total": 30501, - "SUM(sum_boys)": 30501, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lisa", - "state": "MI", - "gender": "girl", - "total": 30453, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30453, - "%pct_boys": 0 - }, - { - "name": "Rachel", - "state": "TX", - "gender": "girl", - "total": 30424, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30424, - "%pct_boys": 0 - }, - { - "name": "Jeffrey", - "state": "IL", - "gender": "boy", - "total": 30403, - "SUM(sum_boys)": 30403, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kimberly", - "state": "PA", - "gender": "girl", - "total": 30328, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30328, - "%pct_boys": 0 - }, - { - "name": "Michelle", - "state": "MI", - "gender": "girl", - "total": 30321, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30321, - "%pct_boys": 0 - }, - { - "name": "Stephanie", - "state": "IL", - "gender": "girl", - "total": 30236, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 30236, - "%pct_boys": 0 - }, - { - "name": "Jeffrey", - "state": "MI", - "gender": "boy", - "total": 30102, - "SUM(sum_boys)": 30102, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Juan", - "state": "other", - "gender": "boy", - "total": 30009, - "SUM(sum_boys)": 30009, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Edward", - "state": "NY", - "gender": "boy", - "total": 29933, - "SUM(sum_boys)": 29933, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Laura", - "state": "NY", - "gender": "girl", - "total": 29870, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29870, - "%pct_boys": 0 - }, - { - "name": "Charles", - "state": "OH", - "gender": "boy", - "total": 29867, - "SUM(sum_boys)": 29867, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Maria", - "state": "NY", - "gender": "girl", - "total": 29809, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29809, - "%pct_boys": 0 - }, - { - "name": "Carlos", - "state": "other", - "gender": "boy", - "total": 29806, - "SUM(sum_boys)": 29806, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexis", - "state": "CA", - "gender": "girl", - "total": 29792, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29792, - "%pct_boys": 0 - }, - { - "name": "Timothy", - "state": "MI", - "gender": "boy", - "total": 29760, - "SUM(sum_boys)": 29760, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rebecca", - "state": "NY", - "gender": "girl", - "total": 29726, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29726, - "%pct_boys": 0 - }, - { - "name": "Angela", - "state": "OH", - "gender": "girl", - "total": 29699, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29699, - "%pct_boys": 0 - }, - { - "name": "Amy", - "state": "IL", - "gender": "girl", - "total": 29647, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29647, - "%pct_boys": 0 - }, - { - "name": "Brian", - "state": "FL", - "gender": "boy", - "total": 29628, - "SUM(sum_boys)": 29628, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mary", - "state": "NY", - "gender": "girl", - "total": 29625, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29625, - "%pct_boys": 0 - }, - { - "name": "Lauren", - "state": "NY", - "gender": "girl", - "total": 29584, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29584, - "%pct_boys": 0 - }, - { - "name": "Gregory", - "state": "CA", - "gender": "boy", - "total": 29550, - "SUM(sum_boys)": 29550, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Zachary", - "state": "TX", - "gender": "boy", - "total": 29508, - "SUM(sum_boys)": 29508, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Scott", - "state": "PA", - "gender": "boy", - "total": 29458, - "SUM(sum_boys)": 29458, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gregory", - "state": "NY", - "gender": "boy", - "total": 29416, - "SUM(sum_boys)": 29416, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victoria", - "state": "TX", - "gender": "girl", - "total": 29366, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29366, - "%pct_boys": 0 - }, - { - "name": "Crystal", - "state": "TX", - "gender": "girl", - "total": 29341, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29341, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "CA", - "gender": "boy", - "total": 29340, - "SUM(sum_boys)": 29340, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "William", - "state": "MA", - "gender": "boy", - "total": 29333, - "SUM(sum_boys)": 29333, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emily", - "state": "PA", - "gender": "girl", - "total": 29160, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29160, - "%pct_boys": 0 - }, - { - "name": "Amanda", - "state": "MI", - "gender": "girl", - "total": 29089, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29089, - "%pct_boys": 0 - }, - { - "name": "Sara", - "state": "CA", - "gender": "girl", - "total": 29072, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 29072, - "%pct_boys": 0 - }, - { - "name": "Christian", - "state": "TX", - "gender": "boy", - "total": 28903, - "SUM(sum_boys)": 28903, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mark", - "state": "MI", - "gender": "boy", - "total": 28876, - "SUM(sum_boys)": 28876, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kenneth", - "state": "NY", - "gender": "boy", - "total": 28789, - "SUM(sum_boys)": 28789, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mary", - "state": "CA", - "gender": "girl", - "total": 28762, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28762, - "%pct_boys": 0 - }, - { - "name": "Stephanie", - "state": "FL", - "gender": "girl", - "total": 28740, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28740, - "%pct_boys": 0 - }, - { - "name": "Heather", - "state": "OH", - "gender": "girl", - "total": 28737, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28737, - "%pct_boys": 0 - }, - { - "name": "Sandra", - "state": "CA", - "gender": "girl", - "total": 28678, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28678, - "%pct_boys": 0 - }, - { - "name": "Patricia", - "state": "CA", - "gender": "girl", - "total": 28651, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28651, - "%pct_boys": 0 - }, - { - "name": "Brandon", - "state": "IL", - "gender": "boy", - "total": 28616, - "SUM(sum_boys)": 28616, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicholas", - "state": "NJ", - "gender": "boy", - "total": 28587, - "SUM(sum_boys)": 28587, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stephen", - "state": "CA", - "gender": "boy", - "total": 28580, - "SUM(sum_boys)": 28580, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Richard", - "state": "FL", - "gender": "boy", - "total": 28574, - "SUM(sum_boys)": 28574, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacob", - "state": "NY", - "gender": "boy", - "total": 28558, - "SUM(sum_boys)": 28558, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jonathan", - "state": "IL", - "gender": "boy", - "total": 28547, - "SUM(sum_boys)": 28547, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julie", - "state": "CA", - "gender": "girl", - "total": 28508, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28508, - "%pct_boys": 0 - }, - { - "name": "Antonio", - "state": "CA", - "gender": "boy", - "total": 28479, - "SUM(sum_boys)": 28479, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emily", - "state": "IL", - "gender": "girl", - "total": 28275, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28275, - "%pct_boys": 0 - }, - { - "name": "Christina", - "state": "TX", - "gender": "girl", - "total": 28147, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28147, - "%pct_boys": 0 - }, - { - "name": "Sarah", - "state": "FL", - "gender": "girl", - "total": 28108, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28108, - "%pct_boys": 0 - }, - { - "name": "Amber", - "state": "TX", - "gender": "girl", - "total": 28106, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 28106, - "%pct_boys": 0 - }, - { - "name": "Andrew", - "state": "NJ", - "gender": "boy", - "total": 28062, - "SUM(sum_boys)": 28062, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brian", - "state": "MA", - "gender": "boy", - "total": 28022, - "SUM(sum_boys)": 28022, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Leslie", - "state": "CA", - "gender": "girl", - "total": 27982, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 27982, - "%pct_boys": 0 - }, - { - "name": "Jonathan", - "state": "PA", - "gender": "boy", - "total": 27915, - "SUM(sum_boys)": 27915, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Scott", - "state": "IL", - "gender": "boy", - "total": 27784, - "SUM(sum_boys)": 27784, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ashley", - "state": "MI", - "gender": "girl", - "total": 27777, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 27777, - "%pct_boys": 0 - }, - { - "name": "Heather", - "state": "PA", - "gender": "girl", - "total": 27774, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 27774, - "%pct_boys": 0 - }, - { - "name": "Bryan", - "state": "TX", - "gender": "boy", - "total": 27745, - "SUM(sum_boys)": 27745, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Benjamin", - "state": "NY", - "gender": "boy", - "total": 27738, - "SUM(sum_boys)": 27738, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrea", - "state": "TX", - "gender": "girl", - "total": 27720, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 27720, - "%pct_boys": 0 - }, - { - "name": "Thomas", - "state": "FL", - "gender": "boy", - "total": 27653, - "SUM(sum_boys)": 27653, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adam", - "state": "OH", - "gender": "boy", - "total": 27560, - "SUM(sum_boys)": 27560, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathan", - "state": "TX", - "gender": "boy", - "total": 27496, - "SUM(sum_boys)": 27496, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ryan", - "state": "NJ", - "gender": "boy", - "total": 27486, - "SUM(sum_boys)": 27486, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stephen", - "state": "PA", - "gender": "boy", - "total": 27483, - "SUM(sum_boys)": 27483, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrew", - "state": "MA", - "gender": "boy", - "total": 27449, - "SUM(sum_boys)": 27449, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brenda", - "state": "CA", - "gender": "girl", - "total": 27382, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 27382, - "%pct_boys": 0 - }, - { - "name": "Amy", - "state": "MI", - "gender": "girl", - "total": 27349, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 27349, - "%pct_boys": 0 - }, - { - "name": "Stephanie", - "state": "OH", - "gender": "girl", - "total": 27319, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 27319, - "%pct_boys": 0 - }, - { - "name": "Nicole", - "state": "MI", - "gender": "girl", - "total": 27276, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 27276, - "%pct_boys": 0 - }, - { - "name": "Luis", - "state": "other", - "gender": "boy", - "total": 27176, - "SUM(sum_boys)": 27176, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicole", - "state": "NJ", - "gender": "girl", - "total": 27171, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 27171, - "%pct_boys": 0 - }, - { - "name": "Jeremy", - "state": "TX", - "gender": "boy", - "total": 27132, - "SUM(sum_boys)": 27132, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tyler", - "state": "OH", - "gender": "boy", - "total": 26943, - "SUM(sum_boys)": 26943, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brandon", - "state": "MI", - "gender": "boy", - "total": 26926, - "SUM(sum_boys)": 26926, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Timothy", - "state": "TX", - "gender": "boy", - "total": 26923, - "SUM(sum_boys)": 26923, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adrian", - "state": "TX", - "gender": "boy", - "total": 26821, - "SUM(sum_boys)": 26821, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Hannah", - "state": "CA", - "gender": "girl", - "total": 26810, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26810, - "%pct_boys": 0 - }, - { - "name": "Stephanie", - "state": "PA", - "gender": "girl", - "total": 26805, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26805, - "%pct_boys": 0 - }, - { - "name": "Justin", - "state": "IL", - "gender": "boy", - "total": 26707, - "SUM(sum_boys)": 26707, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Valerie", - "state": "other", - "gender": "girl", - "total": 26593, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26593, - "%pct_boys": 0 - }, - { - "name": "Zachary", - "state": "OH", - "gender": "boy", - "total": 26547, - "SUM(sum_boys)": 26547, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kimberly", - "state": "MI", - "gender": "girl", - "total": 26537, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26537, - "%pct_boys": 0 - }, - { - "name": "Charles", - "state": "IL", - "gender": "boy", - "total": 26522, - "SUM(sum_boys)": 26522, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brandon", - "state": "PA", - "gender": "boy", - "total": 26519, - "SUM(sum_boys)": 26519, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelly", - "state": "PA", - "gender": "girl", - "total": 26496, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26496, - "%pct_boys": 0 - }, - { - "name": "Melissa", - "state": "FL", - "gender": "girl", - "total": 26490, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26490, - "%pct_boys": 0 - }, - { - "name": "Benjamin", - "state": "TX", - "gender": "boy", - "total": 26384, - "SUM(sum_boys)": 26384, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Justin", - "state": "MI", - "gender": "boy", - "total": 26336, - "SUM(sum_boys)": 26336, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cynthia", - "state": "TX", - "gender": "girl", - "total": 26294, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26294, - "%pct_boys": 0 - }, - { - "name": "Charles", - "state": "PA", - "gender": "boy", - "total": 26288, - "SUM(sum_boys)": 26288, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elizabeth", - "state": "FL", - "gender": "girl", - "total": 26250, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26250, - "%pct_boys": 0 - }, - { - "name": "Elizabeth", - "state": "MI", - "gender": "girl", - "total": 26239, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26239, - "%pct_boys": 0 - }, - { - "name": "Melissa", - "state": "MI", - "gender": "girl", - "total": 26232, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 26232, - "%pct_boys": 0 - }, - { - "name": "Alexandra", - "state": "CA", - "gender": "girl", - "total": 25946, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25946, - "%pct_boys": 0 - }, - { - "name": "Charles", - "state": "FL", - "gender": "boy", - "total": 25941, - "SUM(sum_boys)": 25941, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nancy", - "state": "CA", - "gender": "girl", - "total": 25914, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25914, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "CA", - "gender": "girl", - "total": 25892, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25892, - "%pct_boys": 0 - }, - { - "name": "Nicole", - "state": "OH", - "gender": "girl", - "total": 25886, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25886, - "%pct_boys": 0 - }, - { - "name": "Michelle", - "state": "FL", - "gender": "girl", - "total": 25811, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25811, - "%pct_boys": 0 - }, - { - "name": "Brittany", - "state": "CA", - "gender": "girl", - "total": 25807, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25807, - "%pct_boys": 0 - }, - { - "name": "Alexander", - "state": "FL", - "gender": "boy", - "total": 25807, - "SUM(sum_boys)": 25807, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacob", - "state": "PA", - "gender": "boy", - "total": 25805, - "SUM(sum_boys)": 25805, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Frank", - "state": "other", - "gender": "boy", - "total": 25755, - "SUM(sum_boys)": 25755, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Aaron", - "state": "OH", - "gender": "boy", - "total": 25689, - "SUM(sum_boys)": 25689, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rebecca", - "state": "PA", - "gender": "girl", - "total": 25671, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25671, - "%pct_boys": 0 - }, - { - "name": "Tyler", - "state": "PA", - "gender": "boy", - "total": 25504, - "SUM(sum_boys)": 25504, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kimberly", - "state": "FL", - "gender": "girl", - "total": 25484, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25484, - "%pct_boys": 0 - }, - { - "name": "Jacob", - "state": "FL", - "gender": "boy", - "total": 25472, - "SUM(sum_boys)": 25472, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Monica", - "state": "TX", - "gender": "girl", - "total": 25460, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25460, - "%pct_boys": 0 - }, - { - "name": "Stephen", - "state": "TX", - "gender": "boy", - "total": 25433, - "SUM(sum_boys)": 25433, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Heather", - "state": "TX", - "gender": "girl", - "total": 25377, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25377, - "%pct_boys": 0 - }, - { - "name": "Cindy", - "state": "other", - "gender": "girl", - "total": 25363, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25363, - "%pct_boys": 0 - }, - { - "name": "Thomas", - "state": "MA", - "gender": "boy", - "total": 25355, - "SUM(sum_boys)": 25355, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dylan", - "state": "CA", - "gender": "boy", - "total": 25345, - "SUM(sum_boys)": 25345, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Eric", - "state": "FL", - "gender": "boy", - "total": 25292, - "SUM(sum_boys)": 25292, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brianna", - "state": "CA", - "gender": "girl", - "total": 25282, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25282, - "%pct_boys": 0 - }, - { - "name": "Jason", - "state": "NJ", - "gender": "boy", - "total": 25268, - "SUM(sum_boys)": 25268, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angela", - "state": "IL", - "gender": "girl", - "total": 25261, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25261, - "%pct_boys": 0 - }, - { - "name": "Kayla", - "state": "CA", - "gender": "girl", - "total": 25106, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25106, - "%pct_boys": 0 - }, - { - "name": "Karen", - "state": "NY", - "gender": "girl", - "total": 25106, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 25106, - "%pct_boys": 0 - }, - { - "name": "Adam", - "state": "TX", - "gender": "boy", - "total": 25038, - "SUM(sum_boys)": 25038, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicholas", - "state": "MA", - "gender": "boy", - "total": 24991, - "SUM(sum_boys)": 24991, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christian", - "state": "NY", - "gender": "boy", - "total": 24973, - "SUM(sum_boys)": 24973, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Heather", - "state": "NY", - "gender": "girl", - "total": 24965, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24965, - "%pct_boys": 0 - }, - { - "name": "Benjamin", - "state": "OH", - "gender": "boy", - "total": 24936, - "SUM(sum_boys)": 24936, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kevin", - "state": "MA", - "gender": "boy", - "total": 24911, - "SUM(sum_boys)": 24911, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katherine", - "state": "NY", - "gender": "girl", - "total": 24911, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24911, - "%pct_boys": 0 - }, - { - "name": "Gabriel", - "state": "TX", - "gender": "boy", - "total": 24887, - "SUM(sum_boys)": 24887, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anna", - "state": "CA", - "gender": "girl", - "total": 24845, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24845, - "%pct_boys": 0 - }, - { - "name": "Tyler", - "state": "TX", - "gender": "boy", - "total": 24755, - "SUM(sum_boys)": 24755, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Zachary", - "state": "PA", - "gender": "boy", - "total": 24744, - "SUM(sum_boys)": 24744, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adam", - "state": "IL", - "gender": "boy", - "total": 24677, - "SUM(sum_boys)": 24677, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Richard", - "state": "NJ", - "gender": "boy", - "total": 24667, - "SUM(sum_boys)": 24667, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jessica", - "state": "MA", - "gender": "girl", - "total": 24653, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24653, - "%pct_boys": 0 - }, - { - "name": "Brittany", - "state": "TX", - "gender": "girl", - "total": 24593, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24593, - "%pct_boys": 0 - }, - { - "name": "Nicole", - "state": "FL", - "gender": "girl", - "total": 24579, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24579, - "%pct_boys": 0 - }, - { - "name": "Victoria", - "state": "NY", - "gender": "girl", - "total": 24578, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24578, - "%pct_boys": 0 - }, - { - "name": "Alexander", - "state": "TX", - "gender": "boy", - "total": 24525, - "SUM(sum_boys)": 24525, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Vanessa", - "state": "TX", - "gender": "girl", - "total": 24501, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24501, - "%pct_boys": 0 - }, - { - "name": "Emily", - "state": "FL", - "gender": "girl", - "total": 24425, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24425, - "%pct_boys": 0 - }, - { - "name": "Kyle", - "state": "OH", - "gender": "boy", - "total": 24408, - "SUM(sum_boys)": 24408, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emily", - "state": "MI", - "gender": "girl", - "total": 24403, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24403, - "%pct_boys": 0 - }, - { - "name": "Mary", - "state": "IL", - "gender": "girl", - "total": 24391, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24391, - "%pct_boys": 0 - }, - { - "name": "Austin", - "state": "CA", - "gender": "boy", - "total": 24384, - "SUM(sum_boys)": 24384, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ryan", - "state": "MA", - "gender": "boy", - "total": 24345, - "SUM(sum_boys)": 24345, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Steven", - "state": "FL", - "gender": "boy", - "total": 24338, - "SUM(sum_boys)": 24338, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Megan", - "state": "OH", - "gender": "girl", - "total": 24314, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24314, - "%pct_boys": 0 - }, - { - "name": "Richard", - "state": "MI", - "gender": "boy", - "total": 24089, - "SUM(sum_boys)": 24089, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Laura", - "state": "IL", - "gender": "girl", - "total": 24067, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24067, - "%pct_boys": 0 - }, - { - "name": "Mary", - "state": "PA", - "gender": "girl", - "total": 24067, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24067, - "%pct_boys": 0 - }, - { - "name": "Samantha", - "state": "FL", - "gender": "girl", - "total": 24062, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 24062, - "%pct_boys": 0 - }, - { - "name": "Raymond", - "state": "CA", - "gender": "boy", - "total": 24030, - "SUM(sum_boys)": 24030, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jonathan", - "state": "OH", - "gender": "boy", - "total": 24027, - "SUM(sum_boys)": 24027, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelly", - "state": "OH", - "gender": "girl", - "total": 23907, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 23907, - "%pct_boys": 0 - }, - { - "name": "Angel", - "state": "other", - "gender": "boy", - "total": 23902, - "SUM(sum_boys)": 23902, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Samantha", - "state": "IL", - "gender": "girl", - "total": 23803, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 23803, - "%pct_boys": 0 - }, - { - "name": "Mary", - "state": "OH", - "gender": "girl", - "total": 23792, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 23792, - "%pct_boys": 0 - }, - { - "name": "Kyle", - "state": "NY", - "gender": "boy", - "total": 23750, - "SUM(sum_boys)": 23750, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Patrick", - "state": "IL", - "gender": "boy", - "total": 23727, - "SUM(sum_boys)": 23727, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paul", - "state": "TX", - "gender": "boy", - "total": 23685, - "SUM(sum_boys)": 23685, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adam", - "state": "PA", - "gender": "boy", - "total": 23684, - "SUM(sum_boys)": 23684, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rachel", - "state": "OH", - "gender": "girl", - "total": 23658, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 23658, - "%pct_boys": 0 - }, - { - "name": "Victor", - "state": "TX", - "gender": "boy", - "total": 23647, - "SUM(sum_boys)": 23647, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "other", - "gender": "boy", - "total": 23632, - "SUM(sum_boys)": 23632, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Megan", - "state": "PA", - "gender": "girl", - "total": 23609, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 23609, - "%pct_boys": 0 - }, - { - "name": "Alexander", - "state": "IL", - "gender": "boy", - "total": 23564, - "SUM(sum_boys)": 23564, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeffrey", - "state": "TX", - "gender": "boy", - "total": 23481, - "SUM(sum_boys)": 23481, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rebecca", - "state": "OH", - "gender": "girl", - "total": 23463, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 23463, - "%pct_boys": 0 - }, - { - "name": "Jason", - "state": "MA", - "gender": "boy", - "total": 23439, - "SUM(sum_boys)": 23439, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tyler", - "state": "NY", - "gender": "boy", - "total": 23397, - "SUM(sum_boys)": 23397, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Samuel", - "state": "NY", - "gender": "boy", - "total": 23199, - "SUM(sum_boys)": 23199, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Benjamin", - "state": "PA", - "gender": "boy", - "total": 23149, - "SUM(sum_boys)": 23149, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Miguel", - "state": "TX", - "gender": "boy", - "total": 23149, - "SUM(sum_boys)": 23149, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tyler", - "state": "FL", - "gender": "boy", - "total": 23103, - "SUM(sum_boys)": 23103, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Zachary", - "state": "NY", - "gender": "boy", - "total": 23095, - "SUM(sum_boys)": 23095, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erica", - "state": "CA", - "gender": "girl", - "total": 23085, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 23085, - "%pct_boys": 0 - }, - { - "name": "Alyssa", - "state": "TX", - "gender": "girl", - "total": 23080, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 23080, - "%pct_boys": 0 - }, - { - "name": "Hannah", - "state": "TX", - "gender": "girl", - "total": 22996, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22996, - "%pct_boys": 0 - }, - { - "name": "Sean", - "state": "PA", - "gender": "boy", - "total": 22948, - "SUM(sum_boys)": 22948, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lauren", - "state": "PA", - "gender": "girl", - "total": 22889, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22889, - "%pct_boys": 0 - }, - { - "name": "Heather", - "state": "MI", - "gender": "girl", - "total": 22843, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22843, - "%pct_boys": 0 - }, - { - "name": "Vincent", - "state": "CA", - "gender": "boy", - "total": 22807, - "SUM(sum_boys)": 22807, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carol", - "state": "other", - "gender": "girl", - "total": 22805, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22805, - "%pct_boys": 0 - }, - { - "name": "Steven", - "state": "NJ", - "gender": "boy", - "total": 22804, - "SUM(sum_boys)": 22804, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alex", - "state": "CA", - "gender": "boy", - "total": 22770, - "SUM(sum_boys)": 22770, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tiffany", - "state": "TX", - "gender": "girl", - "total": 22762, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22762, - "%pct_boys": 0 - }, - { - "name": "Erin", - "state": "CA", - "gender": "girl", - "total": 22726, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22726, - "%pct_boys": 0 - }, - { - "name": "Ethan", - "state": "CA", - "gender": "boy", - "total": 22709, - "SUM(sum_boys)": 22709, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angela", - "state": "MI", - "gender": "girl", - "total": 22677, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22677, - "%pct_boys": 0 - }, - { - "name": "Timothy", - "state": "FL", - "gender": "boy", - "total": 22616, - "SUM(sum_boys)": 22616, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sarah", - "state": "MA", - "gender": "girl", - "total": 22556, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22556, - "%pct_boys": 0 - }, - { - "name": "Rebecca", - "state": "IL", - "gender": "girl", - "total": 22544, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22544, - "%pct_boys": 0 - }, - { - "name": "Samantha", - "state": "PA", - "gender": "girl", - "total": 22544, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22544, - "%pct_boys": 0 - }, - { - "name": "Megan", - "state": "TX", - "gender": "girl", - "total": 22534, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22534, - "%pct_boys": 0 - }, - { - "name": "Rachel", - "state": "PA", - "gender": "girl", - "total": 22481, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22481, - "%pct_boys": 0 - }, - { - "name": "Kyle", - "state": "IL", - "gender": "boy", - "total": 22432, - "SUM(sum_boys)": 22432, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paul", - "state": "PA", - "gender": "boy", - "total": 22424, - "SUM(sum_boys)": 22424, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jesse", - "state": "TX", - "gender": "boy", - "total": 22361, - "SUM(sum_boys)": 22361, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jesus", - "state": "other", - "gender": "boy", - "total": 22326, - "SUM(sum_boys)": 22326, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelly", - "state": "IL", - "gender": "girl", - "total": 22313, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22313, - "%pct_boys": 0 - }, - { - "name": "Aaron", - "state": "NY", - "gender": "boy", - "total": 22258, - "SUM(sum_boys)": 22258, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Patricia", - "state": "NY", - "gender": "girl", - "total": 22243, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22243, - "%pct_boys": 0 - }, - { - "name": "Vincent", - "state": "NY", - "gender": "boy", - "total": 22222, - "SUM(sum_boys)": 22222, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathan", - "state": "OH", - "gender": "boy", - "total": 22042, - "SUM(sum_boys)": 22042, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stephanie", - "state": "MI", - "gender": "girl", - "total": 22025, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 22025, - "%pct_boys": 0 - }, - { - "name": "Adam", - "state": "MI", - "gender": "boy", - "total": 22011, - "SUM(sum_boys)": 22011, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isabella", - "state": "CA", - "gender": "girl", - "total": 21977, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21977, - "%pct_boys": 0 - }, - { - "name": "Melissa", - "state": "NJ", - "gender": "girl", - "total": 21945, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21945, - "%pct_boys": 0 - }, - { - "name": "Katherine", - "state": "TX", - "gender": "girl", - "total": 21930, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21930, - "%pct_boys": 0 - }, - { - "name": "Cody", - "state": "TX", - "gender": "boy", - "total": 21916, - "SUM(sum_boys)": 21916, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Luis", - "state": "NY", - "gender": "boy", - "total": 21894, - "SUM(sum_boys)": 21894, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nicole", - "state": "TX", - "gender": "girl", - "total": 21867, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21867, - "%pct_boys": 0 - }, - { - "name": "Madison", - "state": "TX", - "gender": "girl", - "total": 21845, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21845, - "%pct_boys": 0 - }, - { - "name": "Patrick", - "state": "PA", - "gender": "boy", - "total": 21654, - "SUM(sum_boys)": 21654, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexis", - "state": "TX", - "gender": "girl", - "total": 21648, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21648, - "%pct_boys": 0 - }, - { - "name": "Kyle", - "state": "MI", - "gender": "boy", - "total": 21642, - "SUM(sum_boys)": 21642, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elizabeth", - "state": "MA", - "gender": "girl", - "total": 21601, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21601, - "%pct_boys": 0 - }, - { - "name": "Austin", - "state": "TX", - "gender": "boy", - "total": 21601, - "SUM(sum_boys)": 21601, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alicia", - "state": "CA", - "gender": "girl", - "total": 21600, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21600, - "%pct_boys": 0 - }, - { - "name": "George", - "state": "NY", - "gender": "boy", - "total": 21537, - "SUM(sum_boys)": 21537, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Aaron", - "state": "MI", - "gender": "boy", - "total": 21528, - "SUM(sum_boys)": 21528, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathy", - "state": "other", - "gender": "girl", - "total": 21526, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21526, - "%pct_boys": 0 - }, - { - "name": "Samantha", - "state": "OH", - "gender": "girl", - "total": 21464, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21464, - "%pct_boys": 0 - }, - { - "name": "Eric", - "state": "NJ", - "gender": "boy", - "total": 21410, - "SUM(sum_boys)": 21410, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jonathan", - "state": "NJ", - "gender": "boy", - "total": 21398, - "SUM(sum_boys)": 21398, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Natalie", - "state": "TX", - "gender": "girl", - "total": 21376, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21376, - "%pct_boys": 0 - }, - { - "name": "Joshua", - "state": "MA", - "gender": "boy", - "total": 21328, - "SUM(sum_boys)": 21328, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Benjamin", - "state": "IL", - "gender": "boy", - "total": 21160, - "SUM(sum_boys)": 21160, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lisa", - "state": "NJ", - "gender": "girl", - "total": 21118, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21118, - "%pct_boys": 0 - }, - { - "name": "Julia", - "state": "CA", - "gender": "girl", - "total": 21100, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21100, - "%pct_boys": 0 - }, - { - "name": "Taylor", - "state": "CA", - "gender": "girl", - "total": 21095, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21095, - "%pct_boys": 0 - }, - { - "name": "Paul", - "state": "IL", - "gender": "boy", - "total": 21089, - "SUM(sum_boys)": 21089, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Frank", - "state": "NY", - "gender": "boy", - "total": 21081, - "SUM(sum_boys)": 21081, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angel", - "state": "TX", - "gender": "boy", - "total": 21009, - "SUM(sum_boys)": 21009, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Valerie", - "state": "CA", - "gender": "girl", - "total": 21000, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 21000, - "%pct_boys": 0 - }, - { - "name": "Zachary", - "state": "IL", - "gender": "boy", - "total": 20956, - "SUM(sum_boys)": 20956, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rebecca", - "state": "MI", - "gender": "girl", - "total": 20949, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20949, - "%pct_boys": 0 - }, - { - "name": "Christine", - "state": "PA", - "gender": "girl", - "total": 20936, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20936, - "%pct_boys": 0 - }, - { - "name": "Megan", - "state": "IL", - "gender": "girl", - "total": 20932, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20932, - "%pct_boys": 0 - }, - { - "name": "Angela", - "state": "NY", - "gender": "girl", - "total": 20895, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20895, - "%pct_boys": 0 - }, - { - "name": "Michelle", - "state": "NJ", - "gender": "girl", - "total": 20790, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20790, - "%pct_boys": 0 - }, - { - "name": "Rachel", - "state": "IL", - "gender": "girl", - "total": 20765, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20765, - "%pct_boys": 0 - }, - { - "name": "Tyler", - "state": "MI", - "gender": "boy", - "total": 20676, - "SUM(sum_boys)": 20676, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kyle", - "state": "PA", - "gender": "boy", - "total": 20672, - "SUM(sum_boys)": 20672, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Charles", - "state": "MI", - "gender": "boy", - "total": 20620, - "SUM(sum_boys)": 20620, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Richard", - "state": "MA", - "gender": "boy", - "total": 20614, - "SUM(sum_boys)": 20614, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacqueline", - "state": "NY", - "gender": "girl", - "total": 20579, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20579, - "%pct_boys": 0 - }, - { - "name": "Isaac", - "state": "CA", - "gender": "boy", - "total": 20542, - "SUM(sum_boys)": 20542, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Patrick", - "state": "TX", - "gender": "boy", - "total": 20498, - "SUM(sum_boys)": 20498, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jordan", - "state": "TX", - "gender": "boy", - "total": 20484, - "SUM(sum_boys)": 20484, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mark", - "state": "MA", - "gender": "boy", - "total": 20442, - "SUM(sum_boys)": 20442, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Aaron", - "state": "IL", - "gender": "boy", - "total": 20430, - "SUM(sum_boys)": 20430, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jose", - "state": "IL", - "gender": "boy", - "total": 20416, - "SUM(sum_boys)": 20416, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tyler", - "state": "IL", - "gender": "boy", - "total": 20389, - "SUM(sum_boys)": 20389, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Madison", - "state": "CA", - "gender": "girl", - "total": 20294, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20294, - "%pct_boys": 0 - }, - { - "name": "Paul", - "state": "OH", - "gender": "boy", - "total": 20257, - "SUM(sum_boys)": 20257, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lisa", - "state": "MA", - "gender": "girl", - "total": 20227, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20227, - "%pct_boys": 0 - }, - { - "name": "Anthony", - "state": "MA", - "gender": "boy", - "total": 20216, - "SUM(sum_boys)": 20216, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jonathan", - "state": "MA", - "gender": "boy", - "total": 20199, - "SUM(sum_boys)": 20199, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Leslie", - "state": "TX", - "gender": "girl", - "total": 20195, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20195, - "%pct_boys": 0 - }, - { - "name": "Heather", - "state": "IL", - "gender": "girl", - "total": 20179, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20179, - "%pct_boys": 0 - }, - { - "name": "Kim", - "state": "other", - "gender": "girl", - "total": 20101, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20101, - "%pct_boys": 0 - }, - { - "name": "Gregory", - "state": "OH", - "gender": "boy", - "total": 20070, - "SUM(sum_boys)": 20070, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kenneth", - "state": "TX", - "gender": "boy", - "total": 20067, - "SUM(sum_boys)": 20067, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Danielle", - "state": "PA", - "gender": "girl", - "total": 20064, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 20064, - "%pct_boys": 0 - }, - { - "name": "Shawn", - "state": "PA", - "gender": "boy", - "total": 20063, - "SUM(sum_boys)": 20063, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mark", - "state": "NJ", - "gender": "boy", - "total": 20058, - "SUM(sum_boys)": 20058, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Zachary", - "state": "FL", - "gender": "boy", - "total": 19984, - "SUM(sum_boys)": 19984, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rachel", - "state": "MI", - "gender": "girl", - "total": 19982, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19982, - "%pct_boys": 0 - }, - { - "name": "Susan", - "state": "NY", - "gender": "girl", - "total": 19969, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19969, - "%pct_boys": 0 - }, - { - "name": "Jeremy", - "state": "NY", - "gender": "boy", - "total": 19967, - "SUM(sum_boys)": 19967, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paul", - "state": "MI", - "gender": "boy", - "total": 19949, - "SUM(sum_boys)": 19949, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeremy", - "state": "OH", - "gender": "boy", - "total": 19947, - "SUM(sum_boys)": 19947, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gregory", - "state": "PA", - "gender": "boy", - "total": 19912, - "SUM(sum_boys)": 19912, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christina", - "state": "FL", - "gender": "girl", - "total": 19905, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19905, - "%pct_boys": 0 - }, - { - "name": "Kelly", - "state": "MI", - "gender": "girl", - "total": 19890, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19890, - "%pct_boys": 0 - }, - { - "name": "Timothy", - "state": "MA", - "gender": "boy", - "total": 19872, - "SUM(sum_boys)": 19872, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Laura", - "state": "OH", - "gender": "girl", - "total": 19862, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19862, - "%pct_boys": 0 - }, - { - "name": "Heather", - "state": "FL", - "gender": "girl", - "total": 19848, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19848, - "%pct_boys": 0 - }, - { - "name": "Benjamin", - "state": "MI", - "gender": "boy", - "total": 19827, - "SUM(sum_boys)": 19827, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "TX", - "gender": "girl", - "total": 19698, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19698, - "%pct_boys": 0 - }, - { - "name": "Kimberly", - "state": "NJ", - "gender": "girl", - "total": 19692, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19692, - "%pct_boys": 0 - }, - { - "name": "Kayla", - "state": "TX", - "gender": "girl", - "total": 19688, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19688, - "%pct_boys": 0 - }, - { - "name": "Michelle", - "state": "MA", - "gender": "girl", - "total": 19671, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19671, - "%pct_boys": 0 - }, - { - "name": "Nicole", - "state": "MA", - "gender": "girl", - "total": 19646, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19646, - "%pct_boys": 0 - }, - { - "name": "Tiffany", - "state": "NY", - "gender": "girl", - "total": 19643, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19643, - "%pct_boys": 0 - }, - { - "name": "Stephanie", - "state": "NJ", - "gender": "girl", - "total": 19594, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19594, - "%pct_boys": 0 - }, - { - "name": "Diana", - "state": "TX", - "gender": "girl", - "total": 19589, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19589, - "%pct_boys": 0 - }, - { - "name": "Megan", - "state": "NY", - "gender": "girl", - "total": 19557, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19557, - "%pct_boys": 0 - }, - { - "name": "Ashley", - "state": "NJ", - "gender": "girl", - "total": 19556, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19556, - "%pct_boys": 0 - }, - { - "name": "Nathan", - "state": "PA", - "gender": "boy", - "total": 19514, - "SUM(sum_boys)": 19514, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adrian", - "state": "other", - "gender": "boy", - "total": 19502, - "SUM(sum_boys)": 19502, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lauren", - "state": "IL", - "gender": "girl", - "total": 19449, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19449, - "%pct_boys": 0 - }, - { - "name": "Brittany", - "state": "OH", - "gender": "girl", - "total": 19431, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19431, - "%pct_boys": 0 - }, - { - "name": "Christina", - "state": "OH", - "gender": "girl", - "total": 19397, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19397, - "%pct_boys": 0 - }, - { - "name": "Zachary", - "state": "MI", - "gender": "boy", - "total": 19374, - "SUM(sum_boys)": 19374, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anna", - "state": "TX", - "gender": "girl", - "total": 19333, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19333, - "%pct_boys": 0 - }, - { - "name": "Andrea", - "state": "NY", - "gender": "girl", - "total": 19266, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19266, - "%pct_boys": 0 - }, - { - "name": "Kyle", - "state": "FL", - "gender": "boy", - "total": 19252, - "SUM(sum_boys)": 19252, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amanda", - "state": "NJ", - "gender": "girl", - "total": 19248, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19248, - "%pct_boys": 0 - }, - { - "name": "Allison", - "state": "CA", - "gender": "girl", - "total": 19219, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19219, - "%pct_boys": 0 - }, - { - "name": "Jeffrey", - "state": "MA", - "gender": "boy", - "total": 19188, - "SUM(sum_boys)": 19188, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeffrey", - "state": "NJ", - "gender": "boy", - "total": 19186, - "SUM(sum_boys)": 19186, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christina", - "state": "PA", - "gender": "girl", - "total": 19146, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19146, - "%pct_boys": 0 - }, - { - "name": "Samantha", - "state": "MI", - "gender": "girl", - "total": 19118, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19118, - "%pct_boys": 0 - }, - { - "name": "Laura", - "state": "PA", - "gender": "girl", - "total": 19104, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19104, - "%pct_boys": 0 - }, - { - "name": "Justin", - "state": "NJ", - "gender": "boy", - "total": 19096, - "SUM(sum_boys)": 19096, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Patricia", - "state": "TX", - "gender": "girl", - "total": 19051, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 19051, - "%pct_boys": 0 - }, - { - "name": "Paul", - "state": "MA", - "gender": "boy", - "total": 19025, - "SUM(sum_boys)": 19025, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joshua", - "state": "NJ", - "gender": "boy", - "total": 18942, - "SUM(sum_boys)": 18942, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Catherine", - "state": "NY", - "gender": "girl", - "total": 18896, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18896, - "%pct_boys": 0 - }, - { - "name": "Sophia", - "state": "CA", - "gender": "girl", - "total": 18859, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18859, - "%pct_boys": 0 - }, - { - "name": "Brittany", - "state": "FL", - "gender": "girl", - "total": 18858, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18858, - "%pct_boys": 0 - }, - { - "name": "Ethan", - "state": "TX", - "gender": "boy", - "total": 18824, - "SUM(sum_boys)": 18824, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathan", - "state": "MI", - "gender": "boy", - "total": 18822, - "SUM(sum_boys)": 18822, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Eric", - "state": "MA", - "gender": "boy", - "total": 18811, - "SUM(sum_boys)": 18811, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Edward", - "state": "PA", - "gender": "boy", - "total": 18807, - "SUM(sum_boys)": 18807, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Abigail", - "state": "TX", - "gender": "girl", - "total": 18805, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18805, - "%pct_boys": 0 - }, - { - "name": "Kenneth", - "state": "IL", - "gender": "boy", - "total": 18756, - "SUM(sum_boys)": 18756, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathleen", - "state": "NY", - "gender": "girl", - "total": 18698, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18698, - "%pct_boys": 0 - }, - { - "name": "Elizabeth", - "state": "NJ", - "gender": "girl", - "total": 18665, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18665, - "%pct_boys": 0 - }, - { - "name": "Nathan", - "state": "IL", - "gender": "boy", - "total": 18612, - "SUM(sum_boys)": 18612, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Peter", - "state": "CA", - "gender": "boy", - "total": 18605, - "SUM(sum_boys)": 18605, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stephen", - "state": "OH", - "gender": "boy", - "total": 18596, - "SUM(sum_boys)": 18596, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diana", - "state": "other", - "gender": "girl", - "total": 18577, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18577, - "%pct_boys": 0 - }, - { - "name": "Angela", - "state": "PA", - "gender": "girl", - "total": 18565, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18565, - "%pct_boys": 0 - }, - { - "name": "Alexander", - "state": "OH", - "gender": "boy", - "total": 18556, - "SUM(sum_boys)": 18556, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexander", - "state": "PA", - "gender": "boy", - "total": 18547, - "SUM(sum_boys)": 18547, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Wendy", - "state": "CA", - "gender": "girl", - "total": 18520, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18520, - "%pct_boys": 0 - }, - { - "name": "Sean", - "state": "IL", - "gender": "boy", - "total": 18516, - "SUM(sum_boys)": 18516, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jonathan", - "state": "MI", - "gender": "boy", - "total": 18469, - "SUM(sum_boys)": 18469, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lauren", - "state": "OH", - "gender": "girl", - "total": 18410, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18410, - "%pct_boys": 0 - }, - { - "name": "Lauren", - "state": "FL", - "gender": "girl", - "total": 18409, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18409, - "%pct_boys": 0 - }, - { - "name": "Lauren", - "state": "NJ", - "gender": "girl", - "total": 18388, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18388, - "%pct_boys": 0 - }, - { - "name": "Keith", - "state": "NY", - "gender": "boy", - "total": 18326, - "SUM(sum_boys)": 18326, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christina", - "state": "IL", - "gender": "girl", - "total": 18234, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18234, - "%pct_boys": 0 - }, - { - "name": "Julie", - "state": "IL", - "gender": "girl", - "total": 18199, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18199, - "%pct_boys": 0 - }, - { - "name": "Bryan", - "state": "NY", - "gender": "boy", - "total": 18182, - "SUM(sum_boys)": 18182, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Denise", - "state": "CA", - "gender": "girl", - "total": 18180, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18180, - "%pct_boys": 0 - }, - { - "name": "Ian", - "state": "CA", - "gender": "boy", - "total": 18173, - "SUM(sum_boys)": 18173, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kenneth", - "state": "OH", - "gender": "boy", - "total": 18162, - "SUM(sum_boys)": 18162, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Noah", - "state": "CA", - "gender": "boy", - "total": 18146, - "SUM(sum_boys)": 18146, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katherine", - "state": "IL", - "gender": "girl", - "total": 18127, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18127, - "%pct_boys": 0 - }, - { - "name": "Scott", - "state": "MA", - "gender": "boy", - "total": 18105, - "SUM(sum_boys)": 18105, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julie", - "state": "OH", - "gender": "girl", - "total": 18059, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18059, - "%pct_boys": 0 - }, - { - "name": "Sara", - "state": "NY", - "gender": "girl", - "total": 18031, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 18031, - "%pct_boys": 0 - }, - { - "name": "Brianna", - "state": "TX", - "gender": "girl", - "total": 17991, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17991, - "%pct_boys": 0 - }, - { - "name": "Aaron", - "state": "PA", - "gender": "boy", - "total": 17990, - "SUM(sum_boys)": 17990, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jasmine", - "state": "TX", - "gender": "girl", - "total": 17952, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17952, - "%pct_boys": 0 - }, - { - "name": "Angela", - "state": "FL", - "gender": "girl", - "total": 17941, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17941, - "%pct_boys": 0 - }, - { - "name": "Jeremy", - "state": "IL", - "gender": "boy", - "total": 17908, - "SUM(sum_boys)": 17908, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sandra", - "state": "TX", - "gender": "girl", - "total": 17795, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17795, - "%pct_boys": 0 - }, - { - "name": "Melissa", - "state": "MA", - "gender": "girl", - "total": 17771, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17771, - "%pct_boys": 0 - }, - { - "name": "Antonio", - "state": "TX", - "gender": "boy", - "total": 17736, - "SUM(sum_boys)": 17736, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christian", - "state": "FL", - "gender": "boy", - "total": 17681, - "SUM(sum_boys)": 17681, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kayla", - "state": "NY", - "gender": "girl", - "total": 17676, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17676, - "%pct_boys": 0 - }, - { - "name": "Rachel", - "state": "FL", - "gender": "girl", - "total": 17671, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17671, - "%pct_boys": 0 - }, - { - "name": "Kyle", - "state": "TX", - "gender": "boy", - "total": 17646, - "SUM(sum_boys)": 17646, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Travis", - "state": "CA", - "gender": "boy", - "total": 17615, - "SUM(sum_boys)": 17615, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ronald", - "state": "CA", - "gender": "boy", - "total": 17608, - "SUM(sum_boys)": 17608, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carlos", - "state": "NY", - "gender": "boy", - "total": 17599, - "SUM(sum_boys)": 17599, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erin", - "state": "NY", - "gender": "girl", - "total": 17598, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17598, - "%pct_boys": 0 - }, - { - "name": "Samantha", - "state": "NJ", - "gender": "girl", - "total": 17597, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17597, - "%pct_boys": 0 - }, - { - "name": "Angel", - "state": "other", - "gender": "girl", - "total": 17571, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17571, - "%pct_boys": 0 - }, - { - "name": "Janet", - "state": "other", - "gender": "girl", - "total": 17558, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17558, - "%pct_boys": 0 - }, - { - "name": "Kenneth", - "state": "PA", - "gender": "boy", - "total": 17551, - "SUM(sum_boys)": 17551, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sean", - "state": "FL", - "gender": "boy", - "total": 17549, - "SUM(sum_boys)": 17549, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Courtney", - "state": "TX", - "gender": "girl", - "total": 17505, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17505, - "%pct_boys": 0 - }, - { - "name": "Austin", - "state": "FL", - "gender": "boy", - "total": 17499, - "SUM(sum_boys)": 17499, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mark", - "state": "FL", - "gender": "boy", - "total": 17489, - "SUM(sum_boys)": 17489, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Olivia", - "state": "CA", - "gender": "girl", - "total": 17461, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17461, - "%pct_boys": 0 - }, - { - "name": "Lisa", - "state": "FL", - "gender": "girl", - "total": 17457, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17457, - "%pct_boys": 0 - }, - { - "name": "Joel", - "state": "TX", - "gender": "boy", - "total": 17452, - "SUM(sum_boys)": 17452, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emily", - "state": "MA", - "gender": "girl", - "total": 17444, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17444, - "%pct_boys": 0 - }, - { - "name": "Austin", - "state": "OH", - "gender": "boy", - "total": 17434, - "SUM(sum_boys)": 17434, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amber", - "state": "OH", - "gender": "girl", - "total": 17397, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17397, - "%pct_boys": 0 - }, - { - "name": "George", - "state": "CA", - "gender": "boy", - "total": 17391, - "SUM(sum_boys)": 17391, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "CA", - "gender": "girl", - "total": 17346, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17346, - "%pct_boys": 0 - }, - { - "name": "Megan", - "state": "MI", - "gender": "girl", - "total": 17301, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17301, - "%pct_boys": 0 - }, - { - "name": "Rebecca", - "state": "FL", - "gender": "girl", - "total": 17272, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17272, - "%pct_boys": 0 - }, - { - "name": "Sean", - "state": "NJ", - "gender": "boy", - "total": 17261, - "SUM(sum_boys)": 17261, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Raymond", - "state": "NY", - "gender": "boy", - "total": 17215, - "SUM(sum_boys)": 17215, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Steven", - "state": "MA", - "gender": "boy", - "total": 17204, - "SUM(sum_boys)": 17204, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mary", - "state": "MI", - "gender": "girl", - "total": 17194, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17194, - "%pct_boys": 0 - }, - { - "name": "Erica", - "state": "TX", - "gender": "girl", - "total": 17189, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 17189, - "%pct_boys": 0 - }, - { - "name": "Shawn", - "state": "NY", - "gender": "boy", - "total": 17187, - "SUM(sum_boys)": 17187, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stephen", - "state": "MA", - "gender": "boy", - "total": 17164, - "SUM(sum_boys)": 17164, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sean", - "state": "MA", - "gender": "boy", - "total": 17149, - "SUM(sum_boys)": 17149, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dylan", - "state": "TX", - "gender": "boy", - "total": 17044, - "SUM(sum_boys)": 17044, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kenneth", - "state": "MI", - "gender": "boy", - "total": 17033, - "SUM(sum_boys)": 17033, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kenneth", - "state": "FL", - "gender": "boy", - "total": 16966, - "SUM(sum_boys)": 16966, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michele", - "state": "NY", - "gender": "girl", - "total": 16932, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16932, - "%pct_boys": 0 - }, - { - "name": "Ronald", - "state": "NY", - "gender": "boy", - "total": 16909, - "SUM(sum_boys)": 16909, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emma", - "state": "CA", - "gender": "girl", - "total": 16892, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16892, - "%pct_boys": 0 - }, - { - "name": "Samuel", - "state": "OH", - "gender": "boy", - "total": 16890, - "SUM(sum_boys)": 16890, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Laura", - "state": "MI", - "gender": "girl", - "total": 16867, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16867, - "%pct_boys": 0 - }, - { - "name": "Patrick", - "state": "OH", - "gender": "boy", - "total": 16862, - "SUM(sum_boys)": 16862, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gregory", - "state": "IL", - "gender": "boy", - "total": 16854, - "SUM(sum_boys)": 16854, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erin", - "state": "PA", - "gender": "girl", - "total": 16850, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16850, - "%pct_boys": 0 - }, - { - "name": "Amanda", - "state": "MA", - "gender": "girl", - "total": 16839, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16839, - "%pct_boys": 0 - }, - { - "name": "Hannah", - "state": "OH", - "gender": "girl", - "total": 16830, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16830, - "%pct_boys": 0 - }, - { - "name": "Shawn", - "state": "OH", - "gender": "boy", - "total": 16802, - "SUM(sum_boys)": 16802, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexandra", - "state": "NY", - "gender": "girl", - "total": 16786, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16786, - "%pct_boys": 0 - }, - { - "name": "Danielle", - "state": "NJ", - "gender": "girl", - "total": 16778, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16778, - "%pct_boys": 0 - }, - { - "name": "Timothy", - "state": "NJ", - "gender": "boy", - "total": 16774, - "SUM(sum_boys)": 16774, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victoria", - "state": "FL", - "gender": "girl", - "total": 16695, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16695, - "%pct_boys": 0 - }, - { - "name": "Dawn", - "state": "NY", - "gender": "girl", - "total": 16689, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16689, - "%pct_boys": 0 - }, - { - "name": "Sarah", - "state": "NJ", - "gender": "girl", - "total": 16650, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16650, - "%pct_boys": 0 - }, - { - "name": "Samuel", - "state": "IL", - "gender": "boy", - "total": 16646, - "SUM(sum_boys)": 16646, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christine", - "state": "IL", - "gender": "girl", - "total": 16624, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16624, - "%pct_boys": 0 - }, - { - "name": "Samuel", - "state": "PA", - "gender": "boy", - "total": 16619, - "SUM(sum_boys)": 16619, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaiah", - "state": "CA", - "gender": "boy", - "total": 16588, - "SUM(sum_boys)": 16588, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emily", - "state": "NJ", - "gender": "girl", - "total": 16520, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16520, - "%pct_boys": 0 - }, - { - "name": "Alyssa", - "state": "NY", - "gender": "girl", - "total": 16516, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16516, - "%pct_boys": 0 - }, - { - "name": "Alexander", - "state": "NJ", - "gender": "boy", - "total": 16406, - "SUM(sum_boys)": 16406, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tiffany", - "state": "FL", - "gender": "girl", - "total": 16379, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16379, - "%pct_boys": 0 - }, - { - "name": "Maria", - "state": "IL", - "gender": "girl", - "total": 16376, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16376, - "%pct_boys": 0 - }, - { - "name": "Denise", - "state": "NY", - "gender": "girl", - "total": 16323, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16323, - "%pct_boys": 0 - }, - { - "name": "Sara", - "state": "TX", - "gender": "girl", - "total": 16319, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16319, - "%pct_boys": 0 - }, - { - "name": "Andrea", - "state": "IL", - "gender": "girl", - "total": 16314, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16314, - "%pct_boys": 0 - }, - { - "name": "Sean", - "state": "TX", - "gender": "boy", - "total": 16307, - "SUM(sum_boys)": 16307, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexander", - "state": "MI", - "gender": "boy", - "total": 16280, - "SUM(sum_boys)": 16280, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Danielle", - "state": "OH", - "gender": "girl", - "total": 16210, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16210, - "%pct_boys": 0 - }, - { - "name": "Sean", - "state": "OH", - "gender": "boy", - "total": 16179, - "SUM(sum_boys)": 16179, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Benjamin", - "state": "FL", - "gender": "boy", - "total": 16107, - "SUM(sum_boys)": 16107, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelly", - "state": "NJ", - "gender": "girl", - "total": 16105, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16105, - "%pct_boys": 0 - }, - { - "name": "Karen", - "state": "TX", - "gender": "girl", - "total": 16085, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16085, - "%pct_boys": 0 - }, - { - "name": "Diana", - "state": "NY", - "gender": "girl", - "total": 16022, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 16022, - "%pct_boys": 0 - }, - { - "name": "Shawn", - "state": "CA", - "gender": "boy", - "total": 15989, - "SUM(sum_boys)": 15989, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Abigail", - "state": "CA", - "gender": "girl", - "total": 15983, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15983, - "%pct_boys": 0 - }, - { - "name": "Jeffrey", - "state": "FL", - "gender": "boy", - "total": 15909, - "SUM(sum_boys)": 15909, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Susan", - "state": "PA", - "gender": "girl", - "total": 15908, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15908, - "%pct_boys": 0 - }, - { - "name": "Scott", - "state": "TX", - "gender": "boy", - "total": 15905, - "SUM(sum_boys)": 15905, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Scott", - "state": "NJ", - "gender": "boy", - "total": 15903, - "SUM(sum_boys)": 15903, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tiffany", - "state": "OH", - "gender": "girl", - "total": 15887, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15887, - "%pct_boys": 0 - }, - { - "name": "Patrick", - "state": "MA", - "gender": "boy", - "total": 15867, - "SUM(sum_boys)": 15867, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacqueline", - "state": "TX", - "gender": "girl", - "total": 15846, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15846, - "%pct_boys": 0 - }, - { - "name": "Patrick", - "state": "MI", - "gender": "boy", - "total": 15808, - "SUM(sum_boys)": 15808, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristen", - "state": "NY", - "gender": "girl", - "total": 15807, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15807, - "%pct_boys": 0 - }, - { - "name": "Samuel", - "state": "FL", - "gender": "boy", - "total": 15804, - "SUM(sum_boys)": 15804, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brenda", - "state": "TX", - "gender": "girl", - "total": 15798, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15798, - "%pct_boys": 0 - }, - { - "name": "Karen", - "state": "PA", - "gender": "girl", - "total": 15795, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15795, - "%pct_boys": 0 - }, - { - "name": "Jeremy", - "state": "MI", - "gender": "boy", - "total": 15751, - "SUM(sum_boys)": 15751, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angel", - "state": "NY", - "gender": "boy", - "total": 15714, - "SUM(sum_boys)": 15714, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adam", - "state": "FL", - "gender": "boy", - "total": 15647, - "SUM(sum_boys)": 15647, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julie", - "state": "MI", - "gender": "girl", - "total": 15643, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15643, - "%pct_boys": 0 - }, - { - "name": "Ronald", - "state": "PA", - "gender": "boy", - "total": 15613, - "SUM(sum_boys)": 15613, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jordan", - "state": "NY", - "gender": "boy", - "total": 15586, - "SUM(sum_boys)": 15586, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Danielle", - "state": "FL", - "gender": "girl", - "total": 15570, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15570, - "%pct_boys": 0 - }, - { - "name": "Jose", - "state": "FL", - "gender": "boy", - "total": 15565, - "SUM(sum_boys)": 15565, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christine", - "state": "NJ", - "gender": "girl", - "total": 15553, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15553, - "%pct_boys": 0 - }, - { - "name": "Brittany", - "state": "NY", - "gender": "girl", - "total": 15523, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15523, - "%pct_boys": 0 - }, - { - "name": "Kayla", - "state": "FL", - "gender": "girl", - "total": 15500, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15500, - "%pct_boys": 0 - }, - { - "name": "Diane", - "state": "other", - "gender": "girl", - "total": 15498, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15498, - "%pct_boys": 0 - }, - { - "name": "Erin", - "state": "OH", - "gender": "girl", - "total": 15484, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15484, - "%pct_boys": 0 - }, - { - "name": "Dylan", - "state": "NY", - "gender": "boy", - "total": 15462, - "SUM(sum_boys)": 15462, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julie", - "state": "NY", - "gender": "girl", - "total": 15435, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15435, - "%pct_boys": 0 - }, - { - "name": "Mary", - "state": "FL", - "gender": "girl", - "total": 15380, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15380, - "%pct_boys": 0 - }, - { - "name": "Allison", - "state": "NY", - "gender": "girl", - "total": 15375, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15375, - "%pct_boys": 0 - }, - { - "name": "Frank", - "state": "CA", - "gender": "boy", - "total": 15374, - "SUM(sum_boys)": 15374, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ashley", - "state": "MA", - "gender": "girl", - "total": 15299, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15299, - "%pct_boys": 0 - }, - { - "name": "Stephen", - "state": "FL", - "gender": "boy", - "total": 15298, - "SUM(sum_boys)": 15298, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paul", - "state": "NJ", - "gender": "boy", - "total": 15249, - "SUM(sum_boys)": 15249, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Edward", - "state": "TX", - "gender": "boy", - "total": 15227, - "SUM(sum_boys)": 15227, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lauren", - "state": "MI", - "gender": "girl", - "total": 15176, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15176, - "%pct_boys": 0 - }, - { - "name": "Benjamin", - "state": "MA", - "gender": "boy", - "total": 15164, - "SUM(sum_boys)": 15164, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Susan", - "state": "CA", - "gender": "girl", - "total": 15132, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15132, - "%pct_boys": 0 - }, - { - "name": "Erica", - "state": "NY", - "gender": "girl", - "total": 15117, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15117, - "%pct_boys": 0 - }, - { - "name": "Katherine", - "state": "OH", - "gender": "girl", - "total": 15113, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15113, - "%pct_boys": 0 - }, - { - "name": "Vincent", - "state": "other", - "gender": "boy", - "total": 15103, - "SUM(sum_boys)": 15103, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Danielle", - "state": "MI", - "gender": "girl", - "total": 15032, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15032, - "%pct_boys": 0 - }, - { - "name": "Amber", - "state": "FL", - "gender": "girl", - "total": 15019, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15019, - "%pct_boys": 0 - }, - { - "name": "Kimberly", - "state": "MA", - "gender": "girl", - "total": 15003, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15003, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "NY", - "gender": "girl", - "total": 15002, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 15002, - "%pct_boys": 0 - }, - { - "name": "Danielle", - "state": "IL", - "gender": "girl", - "total": 14960, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14960, - "%pct_boys": 0 - }, - { - "name": "Amy", - "state": "MA", - "gender": "girl", - "total": 14955, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14955, - "%pct_boys": 0 - }, - { - "name": "Evan", - "state": "CA", - "gender": "boy", - "total": 14944, - "SUM(sum_boys)": 14944, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cameron", - "state": "CA", - "gender": "boy", - "total": 14931, - "SUM(sum_boys)": 14931, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anna", - "state": "NY", - "gender": "girl", - "total": 14920, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14920, - "%pct_boys": 0 - }, - { - "name": "Aaron", - "state": "FL", - "gender": "boy", - "total": 14896, - "SUM(sum_boys)": 14896, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donald", - "state": "CA", - "gender": "boy", - "total": 14878, - "SUM(sum_boys)": 14878, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "OH", - "gender": "girl", - "total": 14872, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14872, - "%pct_boys": 0 - }, - { - "name": "Stephen", - "state": "NJ", - "gender": "boy", - "total": 14860, - "SUM(sum_boys)": 14860, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Megan", - "state": "FL", - "gender": "girl", - "total": 14849, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14849, - "%pct_boys": 0 - }, - { - "name": "Jeremy", - "state": "PA", - "gender": "boy", - "total": 14831, - "SUM(sum_boys)": 14831, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Charles", - "state": "NJ", - "gender": "boy", - "total": 14828, - "SUM(sum_boys)": 14828, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jordan", - "state": "FL", - "gender": "boy", - "total": 14817, - "SUM(sum_boys)": 14817, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Todd", - "state": "OH", - "gender": "boy", - "total": 14817, - "SUM(sum_boys)": 14817, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gregory", - "state": "TX", - "gender": "boy", - "total": 14802, - "SUM(sum_boys)": 14802, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Peter", - "state": "MA", - "gender": "boy", - "total": 14799, - "SUM(sum_boys)": 14799, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brianna", - "state": "NY", - "gender": "girl", - "total": 14754, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14754, - "%pct_boys": 0 - }, - { - "name": "Donald", - "state": "OH", - "gender": "boy", - "total": 14750, - "SUM(sum_boys)": 14750, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amy", - "state": "FL", - "gender": "girl", - "total": 14740, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14740, - "%pct_boys": 0 - }, - { - "name": "Stephanie", - "state": "MA", - "gender": "girl", - "total": 14718, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14718, - "%pct_boys": 0 - }, - { - "name": "Joel", - "state": "CA", - "gender": "boy", - "total": 14696, - "SUM(sum_boys)": 14696, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexis", - "state": "FL", - "gender": "girl", - "total": 14676, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14676, - "%pct_boys": 0 - }, - { - "name": "Olivia", - "state": "NY", - "gender": "girl", - "total": 14669, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14669, - "%pct_boys": 0 - }, - { - "name": "Gregory", - "state": "MI", - "gender": "boy", - "total": 14663, - "SUM(sum_boys)": 14663, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Courtney", - "state": "CA", - "gender": "girl", - "total": 14657, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14657, - "%pct_boys": 0 - }, - { - "name": "Julia", - "state": "NY", - "gender": "girl", - "total": 14651, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14651, - "%pct_boys": 0 - }, - { - "name": "Andrea", - "state": "MI", - "gender": "girl", - "total": 14602, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14602, - "%pct_boys": 0 - }, - { - "name": "Chad", - "state": "OH", - "gender": "boy", - "total": 14580, - "SUM(sum_boys)": 14580, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brittany", - "state": "PA", - "gender": "girl", - "total": 14579, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14579, - "%pct_boys": 0 - }, - { - "name": "April", - "state": "TX", - "gender": "girl", - "total": 14557, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14557, - "%pct_boys": 0 - }, - { - "name": "Kelly", - "state": "TX", - "gender": "girl", - "total": 14530, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14530, - "%pct_boys": 0 - }, - { - "name": "Caleb", - "state": "TX", - "gender": "boy", - "total": 14516, - "SUM(sum_boys)": 14516, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cynthia", - "state": "NY", - "gender": "girl", - "total": 14513, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14513, - "%pct_boys": 0 - }, - { - "name": "Justin", - "state": "MA", - "gender": "boy", - "total": 14507, - "SUM(sum_boys)": 14507, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Patrick", - "state": "NJ", - "gender": "boy", - "total": 14483, - "SUM(sum_boys)": 14483, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrea", - "state": "OH", - "gender": "girl", - "total": 14440, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14440, - "%pct_boys": 0 - }, - { - "name": "Travis", - "state": "TX", - "gender": "boy", - "total": 14401, - "SUM(sum_boys)": 14401, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexander", - "state": "MA", - "gender": "boy", - "total": 14401, - "SUM(sum_boys)": 14401, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Juan", - "state": "NY", - "gender": "boy", - "total": 14397, - "SUM(sum_boys)": 14397, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julie", - "state": "TX", - "gender": "girl", - "total": 14336, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14336, - "%pct_boys": 0 - }, - { - "name": "Linda", - "state": "CA", - "gender": "girl", - "total": 14324, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14324, - "%pct_boys": 0 - }, - { - "name": "Vanessa", - "state": "NY", - "gender": "girl", - "total": 14312, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14312, - "%pct_boys": 0 - }, - { - "name": "Brittany", - "state": "IL", - "gender": "girl", - "total": 14303, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14303, - "%pct_boys": 0 - }, - { - "name": "Cameron", - "state": "TX", - "gender": "boy", - "total": 14293, - "SUM(sum_boys)": 14293, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stephen", - "state": "IL", - "gender": "boy", - "total": 14291, - "SUM(sum_boys)": 14291, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexis", - "state": "NY", - "gender": "girl", - "total": 14279, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14279, - "%pct_boys": 0 - }, - { - "name": "Ronald", - "state": "OH", - "gender": "boy", - "total": 14275, - "SUM(sum_boys)": 14275, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Patrick", - "state": "FL", - "gender": "boy", - "total": 14267, - "SUM(sum_boys)": 14267, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Valerie", - "state": "TX", - "gender": "girl", - "total": 14262, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14262, - "%pct_boys": 0 - }, - { - "name": "Melanie", - "state": "CA", - "gender": "girl", - "total": 14255, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14255, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "other", - "gender": "boy", - "total": 14248, - "SUM(sum_boys)": 14248, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Edward", - "state": "NJ", - "gender": "boy", - "total": 14210, - "SUM(sum_boys)": 14210, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cindy", - "state": "CA", - "gender": "girl", - "total": 14149, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14149, - "%pct_boys": 0 - }, - { - "name": "Christina", - "state": "MI", - "gender": "girl", - "total": 14131, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14131, - "%pct_boys": 0 - }, - { - "name": "Edward", - "state": "IL", - "gender": "boy", - "total": 14092, - "SUM(sum_boys)": 14092, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christina", - "state": "NJ", - "gender": "girl", - "total": 14084, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14084, - "%pct_boys": 0 - }, - { - "name": "Bryan", - "state": "FL", - "gender": "boy", - "total": 14076, - "SUM(sum_boys)": 14076, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexandra", - "state": "TX", - "gender": "girl", - "total": 14035, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14035, - "%pct_boys": 0 - }, - { - "name": "Erin", - "state": "IL", - "gender": "girl", - "total": 14022, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14022, - "%pct_boys": 0 - }, - { - "name": "April", - "state": "CA", - "gender": "girl", - "total": 14010, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 14010, - "%pct_boys": 0 - }, - { - "name": "Amber", - "state": "PA", - "gender": "girl", - "total": 13976, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13976, - "%pct_boys": 0 - }, - { - "name": "Christine", - "state": "MA", - "gender": "girl", - "total": 13974, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13974, - "%pct_boys": 0 - }, - { - "name": "Adam", - "state": "MA", - "gender": "boy", - "total": 13945, - "SUM(sum_boys)": 13945, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cody", - "state": "CA", - "gender": "boy", - "total": 13871, - "SUM(sum_boys)": 13871, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kyle", - "state": "NJ", - "gender": "boy", - "total": 13796, - "SUM(sum_boys)": 13796, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeremy", - "state": "FL", - "gender": "boy", - "total": 13793, - "SUM(sum_boys)": 13793, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Allison", - "state": "TX", - "gender": "girl", - "total": 13744, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13744, - "%pct_boys": 0 - }, - { - "name": "Tiffany", - "state": "IL", - "gender": "girl", - "total": 13742, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13742, - "%pct_boys": 0 - }, - { - "name": "Elijah", - "state": "CA", - "gender": "boy", - "total": 13664, - "SUM(sum_boys)": 13664, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "FL", - "gender": "girl", - "total": 13652, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13652, - "%pct_boys": 0 - }, - { - "name": "Christine", - "state": "OH", - "gender": "girl", - "total": 13644, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13644, - "%pct_boys": 0 - }, - { - "name": "Amber", - "state": "MI", - "gender": "girl", - "total": 13636, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13636, - "%pct_boys": 0 - }, - { - "name": "Bradley", - "state": "OH", - "gender": "boy", - "total": 13634, - "SUM(sum_boys)": 13634, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donald", - "state": "NY", - "gender": "boy", - "total": 13614, - "SUM(sum_boys)": 13614, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Douglas", - "state": "OH", - "gender": "boy", - "total": 13611, - "SUM(sum_boys)": 13611, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tina", - "state": "CA", - "gender": "girl", - "total": 13587, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13587, - "%pct_boys": 0 - }, - { - "name": "Teresa", - "state": "CA", - "gender": "girl", - "total": 13559, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13559, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "PA", - "gender": "girl", - "total": 13521, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13521, - "%pct_boys": 0 - }, - { - "name": "Kayla", - "state": "PA", - "gender": "girl", - "total": 13505, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13505, - "%pct_boys": 0 - }, - { - "name": "Stephen", - "state": "MI", - "gender": "boy", - "total": 13457, - "SUM(sum_boys)": 13457, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Laura", - "state": "NJ", - "gender": "girl", - "total": 13442, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13442, - "%pct_boys": 0 - }, - { - "name": "Destiny", - "state": "CA", - "gender": "girl", - "total": 13436, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13436, - "%pct_boys": 0 - }, - { - "name": "Peter", - "state": "NJ", - "gender": "boy", - "total": 13410, - "SUM(sum_boys)": 13410, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Madison", - "state": "OH", - "gender": "girl", - "total": 13388, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13388, - "%pct_boys": 0 - }, - { - "name": "Katherine", - "state": "FL", - "gender": "girl", - "total": 13370, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13370, - "%pct_boys": 0 - }, - { - "name": "Kayla", - "state": "OH", - "gender": "girl", - "total": 13318, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13318, - "%pct_boys": 0 - }, - { - "name": "Samantha", - "state": "MA", - "gender": "girl", - "total": 13304, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13304, - "%pct_boys": 0 - }, - { - "name": "Hannah", - "state": "FL", - "gender": "girl", - "total": 13279, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13279, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "OH", - "gender": "boy", - "total": 13278, - "SUM(sum_boys)": 13278, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victoria", - "state": "IL", - "gender": "girl", - "total": 13275, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13275, - "%pct_boys": 0 - }, - { - "name": "Hannah", - "state": "IL", - "gender": "girl", - "total": 13263, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13263, - "%pct_boys": 0 - }, - { - "name": "Kristen", - "state": "CA", - "gender": "girl", - "total": 13243, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13243, - "%pct_boys": 0 - }, - { - "name": "Susan", - "state": "IL", - "gender": "girl", - "total": 13200, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13200, - "%pct_boys": 0 - }, - { - "name": "Alexis", - "state": "OH", - "gender": "girl", - "total": 13199, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13199, - "%pct_boys": 0 - }, - { - "name": "Dylan", - "state": "FL", - "gender": "boy", - "total": 13172, - "SUM(sum_boys)": 13172, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shannon", - "state": "OH", - "gender": "girl", - "total": 13170, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13170, - "%pct_boys": 0 - }, - { - "name": "Lori", - "state": "PA", - "gender": "girl", - "total": 13149, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13149, - "%pct_boys": 0 - }, - { - "name": "Austin", - "state": "MI", - "gender": "boy", - "total": 13145, - "SUM(sum_boys)": 13145, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sean", - "state": "MI", - "gender": "boy", - "total": 13140, - "SUM(sum_boys)": 13140, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Karen", - "state": "IL", - "gender": "girl", - "total": 13131, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13131, - "%pct_boys": 0 - }, - { - "name": "Cassandra", - "state": "CA", - "gender": "girl", - "total": 13103, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13103, - "%pct_boys": 0 - }, - { - "name": "Laura", - "state": "FL", - "gender": "girl", - "total": 13097, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13097, - "%pct_boys": 0 - }, - { - "name": "Joel", - "state": "NY", - "gender": "boy", - "total": 13079, - "SUM(sum_boys)": 13079, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donald", - "state": "PA", - "gender": "boy", - "total": 13069, - "SUM(sum_boys)": 13069, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathan", - "state": "NY", - "gender": "boy", - "total": 13051, - "SUM(sum_boys)": 13051, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaac", - "state": "TX", - "gender": "boy", - "total": 13029, - "SUM(sum_boys)": 13029, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sara", - "state": "OH", - "gender": "girl", - "total": 13008, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 13008, - "%pct_boys": 0 - }, - { - "name": "Kelly", - "state": "FL", - "gender": "girl", - "total": 12989, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12989, - "%pct_boys": 0 - }, - { - "name": "Catherine", - "state": "CA", - "gender": "girl", - "total": 12966, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12966, - "%pct_boys": 0 - }, - { - "name": "Brandon", - "state": "NJ", - "gender": "boy", - "total": 12936, - "SUM(sum_boys)": 12936, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amy", - "state": "NJ", - "gender": "girl", - "total": 12918, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12918, - "%pct_boys": 0 - }, - { - "name": "Bryan", - "state": "IL", - "gender": "boy", - "total": 12897, - "SUM(sum_boys)": 12897, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Hannah", - "state": "NY", - "gender": "girl", - "total": 12886, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12886, - "%pct_boys": 0 - }, - { - "name": "Paul", - "state": "FL", - "gender": "boy", - "total": 12847, - "SUM(sum_boys)": 12847, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jasmine", - "state": "NY", - "gender": "girl", - "total": 12844, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12844, - "%pct_boys": 0 - }, - { - "name": "Crystal", - "state": "NY", - "gender": "girl", - "total": 12841, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12841, - "%pct_boys": 0 - }, - { - "name": "Douglas", - "state": "NY", - "gender": "boy", - "total": 12790, - "SUM(sum_boys)": 12790, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Peter", - "state": "IL", - "gender": "boy", - "total": 12776, - "SUM(sum_boys)": 12776, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Bryan", - "state": "OH", - "gender": "boy", - "total": 12774, - "SUM(sum_boys)": 12774, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julie", - "state": "PA", - "gender": "girl", - "total": 12772, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12772, - "%pct_boys": 0 - }, - { - "name": "Lauren", - "state": "MA", - "gender": "girl", - "total": 12765, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12765, - "%pct_boys": 0 - }, - { - "name": "Patricia", - "state": "IL", - "gender": "girl", - "total": 12760, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12760, - "%pct_boys": 0 - }, - { - "name": "Jacqueline", - "state": "IL", - "gender": "girl", - "total": 12755, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12755, - "%pct_boys": 0 - }, - { - "name": "Keith", - "state": "PA", - "gender": "boy", - "total": 12741, - "SUM(sum_boys)": 12741, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Danielle", - "state": "TX", - "gender": "girl", - "total": 12725, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12725, - "%pct_boys": 0 - }, - { - "name": "Rebecca", - "state": "MA", - "gender": "girl", - "total": 12724, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12724, - "%pct_boys": 0 - }, - { - "name": "Bradley", - "state": "IL", - "gender": "boy", - "total": 12721, - "SUM(sum_boys)": 12721, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Scott", - "state": "FL", - "gender": "boy", - "total": 12709, - "SUM(sum_boys)": 12709, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victor", - "state": "NY", - "gender": "boy", - "total": 12701, - "SUM(sum_boys)": 12701, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Hannah", - "state": "PA", - "gender": "girl", - "total": 12679, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12679, - "%pct_boys": 0 - }, - { - "name": "Sara", - "state": "IL", - "gender": "girl", - "total": 12659, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12659, - "%pct_boys": 0 - }, - { - "name": "Gary", - "state": "CA", - "gender": "boy", - "total": 12657, - "SUM(sum_boys)": 12657, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tracy", - "state": "CA", - "gender": "girl", - "total": 12641, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12641, - "%pct_boys": 0 - }, - { - "name": "Dustin", - "state": "TX", - "gender": "boy", - "total": 12634, - "SUM(sum_boys)": 12634, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kenneth", - "state": "NJ", - "gender": "boy", - "total": 12567, - "SUM(sum_boys)": 12567, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gregory", - "state": "FL", - "gender": "boy", - "total": 12565, - "SUM(sum_boys)": 12565, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Madison", - "state": "FL", - "gender": "girl", - "total": 12556, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12556, - "%pct_boys": 0 - }, - { - "name": "Emma", - "state": "NY", - "gender": "girl", - "total": 12551, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12551, - "%pct_boys": 0 - }, - { - "name": "Kristin", - "state": "CA", - "gender": "girl", - "total": 12519, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12519, - "%pct_boys": 0 - }, - { - "name": "Andrea", - "state": "FL", - "gender": "girl", - "total": 12514, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12514, - "%pct_boys": 0 - }, - { - "name": "Tara", - "state": "NY", - "gender": "girl", - "total": 12512, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12512, - "%pct_boys": 0 - }, - { - "name": "Juan", - "state": "IL", - "gender": "boy", - "total": 12497, - "SUM(sum_boys)": 12497, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Susan", - "state": "OH", - "gender": "girl", - "total": 12494, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12494, - "%pct_boys": 0 - }, - { - "name": "Alex", - "state": "NY", - "gender": "boy", - "total": 12449, - "SUM(sum_boys)": 12449, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cody", - "state": "OH", - "gender": "boy", - "total": 12446, - "SUM(sum_boys)": 12446, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Natalie", - "state": "NY", - "gender": "girl", - "total": 12424, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12424, - "%pct_boys": 0 - }, - { - "name": "Katherine", - "state": "MI", - "gender": "girl", - "total": 12398, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12398, - "%pct_boys": 0 - }, - { - "name": "Sara", - "state": "MI", - "gender": "girl", - "total": 12362, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12362, - "%pct_boys": 0 - }, - { - "name": "Deborah", - "state": "NY", - "gender": "girl", - "total": 12334, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12334, - "%pct_boys": 0 - }, - { - "name": "Rachel", - "state": "NJ", - "gender": "girl", - "total": 12331, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12331, - "%pct_boys": 0 - }, - { - "name": "Emma", - "state": "TX", - "gender": "girl", - "total": 12302, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12302, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "TX", - "gender": "girl", - "total": 12301, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12301, - "%pct_boys": 0 - }, - { - "name": "Todd", - "state": "MI", - "gender": "boy", - "total": 12291, - "SUM(sum_boys)": 12291, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Abigail", - "state": "OH", - "gender": "girl", - "total": 12287, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12287, - "%pct_boys": 0 - }, - { - "name": "Marcus", - "state": "TX", - "gender": "boy", - "total": 12271, - "SUM(sum_boys)": 12271, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gregory", - "state": "NJ", - "gender": "boy", - "total": 12267, - "SUM(sum_boys)": 12267, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexis", - "state": "IL", - "gender": "girl", - "total": 12237, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12237, - "%pct_boys": 0 - }, - { - "name": "Amber", - "state": "IL", - "gender": "girl", - "total": 12223, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12223, - "%pct_boys": 0 - }, - { - "name": "Hannah", - "state": "MI", - "gender": "girl", - "total": 12132, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12132, - "%pct_boys": 0 - }, - { - "name": "Kelly", - "state": "other", - "gender": "boy", - "total": 12116, - "SUM(sum_boys)": 12116, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alyssa", - "state": "PA", - "gender": "girl", - "total": 12086, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12086, - "%pct_boys": 0 - }, - { - "name": "Alexis", - "state": "PA", - "gender": "girl", - "total": 12050, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12050, - "%pct_boys": 0 - }, - { - "name": "Craig", - "state": "NY", - "gender": "boy", - "total": 12049, - "SUM(sum_boys)": 12049, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacob", - "state": "MA", - "gender": "boy", - "total": 12045, - "SUM(sum_boys)": 12045, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dawn", - "state": "IL", - "gender": "girl", - "total": 12038, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12038, - "%pct_boys": 0 - }, - { - "name": "Cynthia", - "state": "IL", - "gender": "girl", - "total": 12008, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12008, - "%pct_boys": 0 - }, - { - "name": "Allison", - "state": "OH", - "gender": "girl", - "total": 12005, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 12005, - "%pct_boys": 0 - }, - { - "name": "Noah", - "state": "TX", - "gender": "boy", - "total": 11998, - "SUM(sum_boys)": 11998, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Todd", - "state": "PA", - "gender": "boy", - "total": 11990, - "SUM(sum_boys)": 11990, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brianna", - "state": "FL", - "gender": "girl", - "total": 11976, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11976, - "%pct_boys": 0 - }, - { - "name": "Courtney", - "state": "OH", - "gender": "girl", - "total": 11967, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11967, - "%pct_boys": 0 - }, - { - "name": "Tracy", - "state": "NY", - "gender": "girl", - "total": 11959, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11959, - "%pct_boys": 0 - }, - { - "name": "Rebecca", - "state": "NJ", - "gender": "girl", - "total": 11958, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11958, - "%pct_boys": 0 - }, - { - "name": "Alexis", - "state": "CA", - "gender": "boy", - "total": 11924, - "SUM(sum_boys)": 11924, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jared", - "state": "CA", - "gender": "boy", - "total": 11892, - "SUM(sum_boys)": 11892, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chad", - "state": "MI", - "gender": "boy", - "total": 11882, - "SUM(sum_boys)": 11882, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelly", - "state": "MA", - "gender": "girl", - "total": 11879, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11879, - "%pct_boys": 0 - }, - { - "name": "Ronald", - "state": "IL", - "gender": "boy", - "total": 11864, - "SUM(sum_boys)": 11864, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Madison", - "state": "PA", - "gender": "girl", - "total": 11810, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11810, - "%pct_boys": 0 - }, - { - "name": "Todd", - "state": "NY", - "gender": "boy", - "total": 11800, - "SUM(sum_boys)": 11800, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dylan", - "state": "PA", - "gender": "boy", - "total": 11798, - "SUM(sum_boys)": 11798, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Olivia", - "state": "OH", - "gender": "girl", - "total": 11795, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11795, - "%pct_boys": 0 - }, - { - "name": "Michele", - "state": "PA", - "gender": "girl", - "total": 11769, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11769, - "%pct_boys": 0 - }, - { - "name": "Alyssa", - "state": "FL", - "gender": "girl", - "total": 11761, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11761, - "%pct_boys": 0 - }, - { - "name": "Destiny", - "state": "TX", - "gender": "girl", - "total": 11738, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11738, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "MI", - "gender": "boy", - "total": 11733, - "SUM(sum_boys)": 11733, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christian", - "state": "NJ", - "gender": "boy", - "total": 11716, - "SUM(sum_boys)": 11716, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Karen", - "state": "OH", - "gender": "girl", - "total": 11680, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11680, - "%pct_boys": 0 - }, - { - "name": "Heather", - "state": "MA", - "gender": "girl", - "total": 11679, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11679, - "%pct_boys": 0 - }, - { - "name": "Tiffany", - "state": "PA", - "gender": "girl", - "total": 11674, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11674, - "%pct_boys": 0 - }, - { - "name": "Austin", - "state": "IL", - "gender": "boy", - "total": 11671, - "SUM(sum_boys)": 11671, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Keith", - "state": "CA", - "gender": "boy", - "total": 11668, - "SUM(sum_boys)": 11668, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathan", - "state": "FL", - "gender": "boy", - "total": 11660, - "SUM(sum_boys)": 11660, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jasmine", - "state": "FL", - "gender": "girl", - "total": 11660, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11660, - "%pct_boys": 0 - }, - { - "name": "Christian", - "state": "PA", - "gender": "boy", - "total": 11656, - "SUM(sum_boys)": 11656, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "NY", - "gender": "girl", - "total": 11653, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11653, - "%pct_boys": 0 - }, - { - "name": "Morgan", - "state": "TX", - "gender": "girl", - "total": 11652, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11652, - "%pct_boys": 0 - }, - { - "name": "Dawn", - "state": "MI", - "gender": "girl", - "total": 11648, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11648, - "%pct_boys": 0 - }, - { - "name": "George", - "state": "PA", - "gender": "boy", - "total": 11643, - "SUM(sum_boys)": 11643, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erin", - "state": "MI", - "gender": "girl", - "total": 11611, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11611, - "%pct_boys": 0 - }, - { - "name": "Bradley", - "state": "MI", - "gender": "boy", - "total": 11592, - "SUM(sum_boys)": 11592, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nancy", - "state": "NY", - "gender": "girl", - "total": 11586, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11586, - "%pct_boys": 0 - }, - { - "name": "Sara", - "state": "PA", - "gender": "girl", - "total": 11583, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11583, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "MI", - "gender": "girl", - "total": 11571, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11571, - "%pct_boys": 0 - }, - { - "name": "Heather", - "state": "NJ", - "gender": "girl", - "total": 11569, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11569, - "%pct_boys": 0 - }, - { - "name": "Laura", - "state": "MA", - "gender": "girl", - "total": 11524, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11524, - "%pct_boys": 0 - }, - { - "name": "Todd", - "state": "CA", - "gender": "boy", - "total": 11515, - "SUM(sum_boys)": 11515, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "IL", - "gender": "girl", - "total": 11495, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11495, - "%pct_boys": 0 - }, - { - "name": "Douglas", - "state": "PA", - "gender": "boy", - "total": 11476, - "SUM(sum_boys)": 11476, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kyle", - "state": "MA", - "gender": "boy", - "total": 11472, - "SUM(sum_boys)": 11472, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anna", - "state": "IL", - "gender": "girl", - "total": 11455, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11455, - "%pct_boys": 0 - }, - { - "name": "Patricia", - "state": "PA", - "gender": "girl", - "total": 11454, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11454, - "%pct_boys": 0 - }, - { - "name": "Gary", - "state": "NY", - "gender": "boy", - "total": 11446, - "SUM(sum_boys)": 11446, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erin", - "state": "TX", - "gender": "girl", - "total": 11445, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11445, - "%pct_boys": 0 - }, - { - "name": "Maria", - "state": "FL", - "gender": "girl", - "total": 11435, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11435, - "%pct_boys": 0 - }, - { - "name": "Kristen", - "state": "PA", - "gender": "girl", - "total": 11426, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11426, - "%pct_boys": 0 - }, - { - "name": "Dawn", - "state": "PA", - "gender": "girl", - "total": 11403, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11403, - "%pct_boys": 0 - }, - { - "name": "Dawn", - "state": "CA", - "gender": "girl", - "total": 11403, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11403, - "%pct_boys": 0 - }, - { - "name": "Adam", - "state": "NJ", - "gender": "boy", - "total": 11395, - "SUM(sum_boys)": 11395, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Logan", - "state": "OH", - "gender": "boy", - "total": 11379, - "SUM(sum_boys)": 11379, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dylan", - "state": "OH", - "gender": "boy", - "total": 11357, - "SUM(sum_boys)": 11357, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathleen", - "state": "PA", - "gender": "girl", - "total": 11353, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11353, - "%pct_boys": 0 - }, - { - "name": "Keith", - "state": "IL", - "gender": "boy", - "total": 11339, - "SUM(sum_boys)": 11339, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victoria", - "state": "PA", - "gender": "girl", - "total": 11334, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11334, - "%pct_boys": 0 - }, - { - "name": "Mary", - "state": "NJ", - "gender": "girl", - "total": 11333, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11333, - "%pct_boys": 0 - }, - { - "name": "Gabriel", - "state": "NY", - "gender": "boy", - "total": 11332, - "SUM(sum_boys)": 11332, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Austin", - "state": "PA", - "gender": "boy", - "total": 11328, - "SUM(sum_boys)": 11328, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ethan", - "state": "OH", - "gender": "boy", - "total": 11306, - "SUM(sum_boys)": 11306, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victoria", - "state": "NJ", - "gender": "girl", - "total": 11306, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11306, - "%pct_boys": 0 - }, - { - "name": "George", - "state": "TX", - "gender": "boy", - "total": 11304, - "SUM(sum_boys)": 11304, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tracy", - "state": "OH", - "gender": "girl", - "total": 11297, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11297, - "%pct_boys": 0 - }, - { - "name": "Dawn", - "state": "OH", - "gender": "girl", - "total": 11281, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11281, - "%pct_boys": 0 - }, - { - "name": "Christine", - "state": "MI", - "gender": "girl", - "total": 11281, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11281, - "%pct_boys": 0 - }, - { - "name": "Katherine", - "state": "MA", - "gender": "girl", - "total": 11268, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11268, - "%pct_boys": 0 - }, - { - "name": "Donald", - "state": "IL", - "gender": "boy", - "total": 11249, - "SUM(sum_boys)": 11249, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ronald", - "state": "MI", - "gender": "boy", - "total": 11245, - "SUM(sum_boys)": 11245, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "PA", - "gender": "girl", - "total": 11243, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11243, - "%pct_boys": 0 - }, - { - "name": "Alyssa", - "state": "IL", - "gender": "girl", - "total": 11202, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11202, - "%pct_boys": 0 - }, - { - "name": "Alicia", - "state": "TX", - "gender": "girl", - "total": 11199, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11199, - "%pct_boys": 0 - }, - { - "name": "Donna", - "state": "NY", - "gender": "girl", - "total": 11197, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11197, - "%pct_boys": 0 - }, - { - "name": "Melanie", - "state": "TX", - "gender": "girl", - "total": 11189, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11189, - "%pct_boys": 0 - }, - { - "name": "Donald", - "state": "MI", - "gender": "boy", - "total": 11180, - "SUM(sum_boys)": 11180, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rachel", - "state": "MA", - "gender": "girl", - "total": 11159, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11159, - "%pct_boys": 0 - }, - { - "name": "Ethan", - "state": "NY", - "gender": "boy", - "total": 11155, - "SUM(sum_boys)": 11155, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tracy", - "state": "other", - "gender": "boy", - "total": 11147, - "SUM(sum_boys)": 11147, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Zachary", - "state": "MA", - "gender": "boy", - "total": 11146, - "SUM(sum_boys)": 11146, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carlos", - "state": "FL", - "gender": "boy", - "total": 11125, - "SUM(sum_boys)": 11125, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kayla", - "state": "IL", - "gender": "girl", - "total": 11123, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11123, - "%pct_boys": 0 - }, - { - "name": "Linda", - "state": "NY", - "gender": "girl", - "total": 11119, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11119, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "PA", - "gender": "boy", - "total": 11114, - "SUM(sum_boys)": 11114, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chad", - "state": "CA", - "gender": "boy", - "total": 11107, - "SUM(sum_boys)": 11107, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lori", - "state": "OH", - "gender": "girl", - "total": 11097, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11097, - "%pct_boys": 0 - }, - { - "name": "Keith", - "state": "OH", - "gender": "boy", - "total": 11094, - "SUM(sum_boys)": 11094, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Natalie", - "state": "IL", - "gender": "girl", - "total": 11091, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11091, - "%pct_boys": 0 - }, - { - "name": "Tina", - "state": "OH", - "gender": "girl", - "total": 11076, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11076, - "%pct_boys": 0 - }, - { - "name": "Tyler", - "state": "NJ", - "gender": "boy", - "total": 11066, - "SUM(sum_boys)": 11066, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jack", - "state": "CA", - "gender": "boy", - "total": 11063, - "SUM(sum_boys)": 11063, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gabriel", - "state": "FL", - "gender": "boy", - "total": 11053, - "SUM(sum_boys)": 11053, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erin", - "state": "MA", - "gender": "girl", - "total": 11036, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11036, - "%pct_boys": 0 - }, - { - "name": "Andrea", - "state": "PA", - "gender": "girl", - "total": 11034, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11034, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "FL", - "gender": "girl", - "total": 11032, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11032, - "%pct_boys": 0 - }, - { - "name": "Derek", - "state": "CA", - "gender": "boy", - "total": 11018, - "SUM(sum_boys)": 11018, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Evan", - "state": "NY", - "gender": "boy", - "total": 11013, - "SUM(sum_boys)": 11013, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isabella", - "state": "FL", - "gender": "girl", - "total": 11005, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 11005, - "%pct_boys": 0 - }, - { - "name": "Dennis", - "state": "NY", - "gender": "boy", - "total": 11003, - "SUM(sum_boys)": 11003, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexandra", - "state": "FL", - "gender": "girl", - "total": 10986, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10986, - "%pct_boys": 0 - }, - { - "name": "Tammy", - "state": "OH", - "gender": "girl", - "total": 10985, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10985, - "%pct_boys": 0 - }, - { - "name": "Isaiah", - "state": "TX", - "gender": "boy", - "total": 10979, - "SUM(sum_boys)": 10979, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathleen", - "state": "CA", - "gender": "girl", - "total": 10950, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10950, - "%pct_boys": 0 - }, - { - "name": "Edward", - "state": "OH", - "gender": "boy", - "total": 10948, - "SUM(sum_boys)": 10948, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christian", - "state": "IL", - "gender": "boy", - "total": 10946, - "SUM(sum_boys)": 10946, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Megan", - "state": "NJ", - "gender": "girl", - "total": 10942, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10942, - "%pct_boys": 0 - }, - { - "name": "Sandra", - "state": "NY", - "gender": "girl", - "total": 10932, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10932, - "%pct_boys": 0 - }, - { - "name": "Stacy", - "state": "CA", - "gender": "girl", - "total": 10922, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10922, - "%pct_boys": 0 - }, - { - "name": "Taylor", - "state": "PA", - "gender": "girl", - "total": 10893, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10893, - "%pct_boys": 0 - }, - { - "name": "Theresa", - "state": "NY", - "gender": "girl", - "total": 10884, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10884, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "IL", - "gender": "girl", - "total": 10882, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10882, - "%pct_boys": 0 - }, - { - "name": "Samuel", - "state": "MI", - "gender": "boy", - "total": 10879, - "SUM(sum_boys)": 10879, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Travis", - "state": "FL", - "gender": "boy", - "total": 10870, - "SUM(sum_boys)": 10870, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Maria", - "state": "PA", - "gender": "girl", - "total": 10869, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10869, - "%pct_boys": 0 - }, - { - "name": "Victor", - "state": "other", - "gender": "boy", - "total": 10869, - "SUM(sum_boys)": 10869, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Olivia", - "state": "PA", - "gender": "girl", - "total": 10860, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10860, - "%pct_boys": 0 - }, - { - "name": "Courtney", - "state": "PA", - "gender": "girl", - "total": 10802, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10802, - "%pct_boys": 0 - }, - { - "name": "Natalie", - "state": "FL", - "gender": "girl", - "total": 10784, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10784, - "%pct_boys": 0 - }, - { - "name": "Katherine", - "state": "NJ", - "gender": "girl", - "total": 10783, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10783, - "%pct_boys": 0 - }, - { - "name": "Crystal", - "state": "FL", - "gender": "girl", - "total": 10774, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10774, - "%pct_boys": 0 - }, - { - "name": "Chad", - "state": "TX", - "gender": "boy", - "total": 10771, - "SUM(sum_boys)": 10771, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Olivia", - "state": "TX", - "gender": "girl", - "total": 10769, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10769, - "%pct_boys": 0 - }, - { - "name": "Tyler", - "state": "MA", - "gender": "boy", - "total": 10765, - "SUM(sum_boys)": 10765, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Charles", - "state": "MA", - "gender": "boy", - "total": 10761, - "SUM(sum_boys)": 10761, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melanie", - "state": "NY", - "gender": "girl", - "total": 10759, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10759, - "%pct_boys": 0 - }, - { - "name": "Tammy", - "state": "TX", - "gender": "girl", - "total": 10750, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10750, - "%pct_boys": 0 - }, - { - "name": "Tammy", - "state": "PA", - "gender": "girl", - "total": 10725, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10725, - "%pct_boys": 0 - }, - { - "name": "Peter", - "state": "PA", - "gender": "boy", - "total": 10704, - "SUM(sum_boys)": 10704, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gary", - "state": "OH", - "gender": "boy", - "total": 10700, - "SUM(sum_boys)": 10700, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alex", - "state": "TX", - "gender": "boy", - "total": 10696, - "SUM(sum_boys)": 10696, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mary", - "state": "MA", - "gender": "girl", - "total": 10656, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10656, - "%pct_boys": 0 - }, - { - "name": "Lori", - "state": "NY", - "gender": "girl", - "total": 10652, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10652, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "IL", - "gender": "boy", - "total": 10647, - "SUM(sum_boys)": 10647, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amber", - "state": "NY", - "gender": "girl", - "total": 10643, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10643, - "%pct_boys": 0 - }, - { - "name": "Jose", - "state": "NJ", - "gender": "boy", - "total": 10636, - "SUM(sum_boys)": 10636, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Allison", - "state": "PA", - "gender": "girl", - "total": 10623, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10623, - "%pct_boys": 0 - }, - { - "name": "Karen", - "state": "MI", - "gender": "girl", - "total": 10605, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10605, - "%pct_boys": 0 - }, - { - "name": "Kathleen", - "state": "IL", - "gender": "girl", - "total": 10601, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10601, - "%pct_boys": 0 - }, - { - "name": "Courtney", - "state": "FL", - "gender": "girl", - "total": 10592, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10592, - "%pct_boys": 0 - }, - { - "name": "Tracy", - "state": "IL", - "gender": "girl", - "total": 10587, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10587, - "%pct_boys": 0 - }, - { - "name": "Jesse", - "state": "NY", - "gender": "boy", - "total": 10555, - "SUM(sum_boys)": 10555, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Bryan", - "state": "PA", - "gender": "boy", - "total": 10548, - "SUM(sum_boys)": 10548, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Abigail", - "state": "IL", - "gender": "girl", - "total": 10535, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10535, - "%pct_boys": 0 - }, - { - "name": "Nancy", - "state": "TX", - "gender": "girl", - "total": 10519, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10519, - "%pct_boys": 0 - }, - { - "name": "Danielle", - "state": "MA", - "gender": "girl", - "total": 10509, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10509, - "%pct_boys": 0 - }, - { - "name": "Kayla", - "state": "MI", - "gender": "girl", - "total": 10499, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10499, - "%pct_boys": 0 - }, - { - "name": "Grace", - "state": "CA", - "gender": "girl", - "total": 10496, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10496, - "%pct_boys": 0 - }, - { - "name": "Hunter", - "state": "TX", - "gender": "boy", - "total": 10488, - "SUM(sum_boys)": 10488, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brittany", - "state": "MI", - "gender": "girl", - "total": 10467, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10467, - "%pct_boys": 0 - }, - { - "name": "Anna", - "state": "OH", - "gender": "girl", - "total": 10466, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10466, - "%pct_boys": 0 - }, - { - "name": "Chelsea", - "state": "CA", - "gender": "girl", - "total": 10455, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10455, - "%pct_boys": 0 - }, - { - "name": "Madison", - "state": "NY", - "gender": "girl", - "total": 10444, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10444, - "%pct_boys": 0 - }, - { - "name": "Savannah", - "state": "CA", - "gender": "girl", - "total": 10439, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10439, - "%pct_boys": 0 - }, - { - "name": "Emma", - "state": "OH", - "gender": "girl", - "total": 10430, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10430, - "%pct_boys": 0 - }, - { - "name": "Ian", - "state": "NY", - "gender": "boy", - "total": 10429, - "SUM(sum_boys)": 10429, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "NY", - "gender": "girl", - "total": 10417, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10417, - "%pct_boys": 0 - }, - { - "name": "Jasmine", - "state": "IL", - "gender": "girl", - "total": 10408, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10408, - "%pct_boys": 0 - }, - { - "name": "Tiffany", - "state": "MI", - "gender": "girl", - "total": 10407, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10407, - "%pct_boys": 0 - }, - { - "name": "Margaret", - "state": "IL", - "gender": "girl", - "total": 10404, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10404, - "%pct_boys": 0 - }, - { - "name": "Alexis", - "state": "MI", - "gender": "girl", - "total": 10394, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10394, - "%pct_boys": 0 - }, - { - "name": "Courtney", - "state": "NY", - "gender": "girl", - "total": 10388, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10388, - "%pct_boys": 0 - }, - { - "name": "Allison", - "state": "IL", - "gender": "girl", - "total": 10351, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10351, - "%pct_boys": 0 - }, - { - "name": "Katherine", - "state": "PA", - "gender": "girl", - "total": 10328, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10328, - "%pct_boys": 0 - }, - { - "name": "Alyssa", - "state": "OH", - "gender": "girl", - "total": 10325, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10325, - "%pct_boys": 0 - }, - { - "name": "Todd", - "state": "IL", - "gender": "boy", - "total": 10319, - "SUM(sum_boys)": 10319, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Maria", - "state": "NJ", - "gender": "girl", - "total": 10317, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10317, - "%pct_boys": 0 - }, - { - "name": "Barbara", - "state": "NY", - "gender": "girl", - "total": 10306, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10306, - "%pct_boys": 0 - }, - { - "name": "Dustin", - "state": "OH", - "gender": "boy", - "total": 10303, - "SUM(sum_boys)": 10303, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Margaret", - "state": "NY", - "gender": "girl", - "total": 10301, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10301, - "%pct_boys": 0 - }, - { - "name": "Isabella", - "state": "NY", - "gender": "girl", - "total": 10286, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10286, - "%pct_boys": 0 - }, - { - "name": "Olivia", - "state": "IL", - "gender": "girl", - "total": 10259, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10259, - "%pct_boys": 0 - }, - { - "name": "Taylor", - "state": "MI", - "gender": "girl", - "total": 10254, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10254, - "%pct_boys": 0 - }, - { - "name": "Karen", - "state": "NJ", - "gender": "girl", - "total": 10232, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10232, - "%pct_boys": 0 - }, - { - "name": "Madison", - "state": "MI", - "gender": "girl", - "total": 10230, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10230, - "%pct_boys": 0 - }, - { - "name": "Antonio", - "state": "IL", - "gender": "boy", - "total": 10222, - "SUM(sum_boys)": 10222, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Abigail", - "state": "PA", - "gender": "girl", - "total": 10189, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10189, - "%pct_boys": 0 - }, - { - "name": "Zachary", - "state": "NJ", - "gender": "boy", - "total": 10170, - "SUM(sum_boys)": 10170, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Linda", - "state": "TX", - "gender": "girl", - "total": 10142, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10142, - "%pct_boys": 0 - }, - { - "name": "Michele", - "state": "CA", - "gender": "girl", - "total": 10121, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10121, - "%pct_boys": 0 - }, - { - "name": "Phillip", - "state": "CA", - "gender": "boy", - "total": 10116, - "SUM(sum_boys)": 10116, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Antonio", - "state": "FL", - "gender": "boy", - "total": 10101, - "SUM(sum_boys)": 10101, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shane", - "state": "PA", - "gender": "boy", - "total": 10100, - "SUM(sum_boys)": 10100, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chad", - "state": "PA", - "gender": "boy", - "total": 10083, - "SUM(sum_boys)": 10083, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tammy", - "state": "NY", - "gender": "girl", - "total": 10079, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10079, - "%pct_boys": 0 - }, - { - "name": "Juan", - "state": "FL", - "gender": "boy", - "total": 10050, - "SUM(sum_boys)": 10050, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jared", - "state": "TX", - "gender": "boy", - "total": 10047, - "SUM(sum_boys)": 10047, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Susan", - "state": "MI", - "gender": "girl", - "total": 10036, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10036, - "%pct_boys": 0 - }, - { - "name": "Crystal", - "state": "IL", - "gender": "girl", - "total": 10032, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10032, - "%pct_boys": 0 - }, - { - "name": "Tracy", - "state": "PA", - "gender": "girl", - "total": 10030, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10030, - "%pct_boys": 0 - }, - { - "name": "Edward", - "state": "MA", - "gender": "boy", - "total": 10007, - "SUM(sum_boys)": 10007, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathaniel", - "state": "CA", - "gender": "boy", - "total": 9977, - "SUM(sum_boys)": 9977, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jack", - "state": "NY", - "gender": "boy", - "total": 9958, - "SUM(sum_boys)": 9958, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "MI", - "gender": "girl", - "total": 9923, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9923, - "%pct_boys": 0 - }, - { - "name": "Emma", - "state": "IL", - "gender": "girl", - "total": 9896, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9896, - "%pct_boys": 0 - }, - { - "name": "Kathryn", - "state": "IL", - "gender": "girl", - "total": 9889, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9889, - "%pct_boys": 0 - }, - { - "name": "Tammy", - "state": "CA", - "gender": "girl", - "total": 9864, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9864, - "%pct_boys": 0 - }, - { - "name": "Isabella", - "state": "TX", - "gender": "girl", - "total": 9862, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9862, - "%pct_boys": 0 - }, - { - "name": "Ethan", - "state": "FL", - "gender": "boy", - "total": 9849, - "SUM(sum_boys)": 9849, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victoria", - "state": "OH", - "gender": "girl", - "total": 9847, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9847, - "%pct_boys": 0 - }, - { - "name": "Erica", - "state": "IL", - "gender": "girl", - "total": 9820, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9820, - "%pct_boys": 0 - }, - { - "name": "Logan", - "state": "TX", - "gender": "boy", - "total": 9814, - "SUM(sum_boys)": 9814, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "George", - "state": "NJ", - "gender": "boy", - "total": 9791, - "SUM(sum_boys)": 9791, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gregory", - "state": "MA", - "gender": "boy", - "total": 9789, - "SUM(sum_boys)": 9789, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sydney", - "state": "CA", - "gender": "girl", - "total": 9788, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9788, - "%pct_boys": 0 - }, - { - "name": "Jenna", - "state": "NY", - "gender": "girl", - "total": 9780, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9780, - "%pct_boys": 0 - }, - { - "name": "Jamie", - "state": "IL", - "gender": "girl", - "total": 9778, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9778, - "%pct_boys": 0 - }, - { - "name": "Julia", - "state": "PA", - "gender": "girl", - "total": 9772, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9772, - "%pct_boys": 0 - }, - { - "name": "Deborah", - "state": "CA", - "gender": "girl", - "total": 9764, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9764, - "%pct_boys": 0 - }, - { - "name": "Kristin", - "state": "NY", - "gender": "girl", - "total": 9756, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9756, - "%pct_boys": 0 - }, - { - "name": "Haley", - "state": "TX", - "gender": "girl", - "total": 9748, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9748, - "%pct_boys": 0 - }, - { - "name": "Sara", - "state": "FL", - "gender": "girl", - "total": 9745, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9745, - "%pct_boys": 0 - }, - { - "name": "Luis", - "state": "IL", - "gender": "boy", - "total": 9723, - "SUM(sum_boys)": 9723, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Miguel", - "state": "other", - "gender": "boy", - "total": 9715, - "SUM(sum_boys)": 9715, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cody", - "state": "FL", - "gender": "boy", - "total": 9693, - "SUM(sum_boys)": 9693, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristen", - "state": "OH", - "gender": "girl", - "total": 9683, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9683, - "%pct_boys": 0 - }, - { - "name": "Chelsea", - "state": "TX", - "gender": "girl", - "total": 9683, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9683, - "%pct_boys": 0 - }, - { - "name": "Ethan", - "state": "IL", - "gender": "boy", - "total": 9680, - "SUM(sum_boys)": 9680, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Bradley", - "state": "PA", - "gender": "boy", - "total": 9679, - "SUM(sum_boys)": 9679, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Douglas", - "state": "CA", - "gender": "boy", - "total": 9666, - "SUM(sum_boys)": 9666, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Vanessa", - "state": "FL", - "gender": "girl", - "total": 9643, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9643, - "%pct_boys": 0 - }, - { - "name": "Karen", - "state": "MA", - "gender": "girl", - "total": 9636, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9636, - "%pct_boys": 0 - }, - { - "name": "Larry", - "state": "TX", - "gender": "boy", - "total": 9622, - "SUM(sum_boys)": 9622, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "OH", - "gender": "girl", - "total": 9612, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9612, - "%pct_boys": 0 - }, - { - "name": "Ethan", - "state": "PA", - "gender": "boy", - "total": 9596, - "SUM(sum_boys)": 9596, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Patricia", - "state": "OH", - "gender": "girl", - "total": 9594, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9594, - "%pct_boys": 0 - }, - { - "name": "Derek", - "state": "NY", - "gender": "boy", - "total": 9581, - "SUM(sum_boys)": 9581, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jerry", - "state": "TX", - "gender": "boy", - "total": 9566, - "SUM(sum_boys)": 9566, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Frank", - "state": "NJ", - "gender": "boy", - "total": 9553, - "SUM(sum_boys)": 9553, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shawn", - "state": "FL", - "gender": "boy", - "total": 9550, - "SUM(sum_boys)": 9550, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alyssa", - "state": "MI", - "gender": "girl", - "total": 9544, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9544, - "%pct_boys": 0 - }, - { - "name": "Keith", - "state": "MI", - "gender": "boy", - "total": 9543, - "SUM(sum_boys)": 9543, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Olivia", - "state": "MI", - "gender": "girl", - "total": 9530, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9530, - "%pct_boys": 0 - }, - { - "name": "Crystal", - "state": "OH", - "gender": "girl", - "total": 9522, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9522, - "%pct_boys": 0 - }, - { - "name": "Erin", - "state": "NJ", - "gender": "girl", - "total": 9515, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9515, - "%pct_boys": 0 - }, - { - "name": "Samuel", - "state": "MA", - "gender": "boy", - "total": 9514, - "SUM(sum_boys)": 9514, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tara", - "state": "PA", - "gender": "girl", - "total": 9511, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9511, - "%pct_boys": 0 - }, - { - "name": "Morgan", - "state": "OH", - "gender": "girl", - "total": 9507, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9507, - "%pct_boys": 0 - }, - { - "name": "Cody", - "state": "PA", - "gender": "boy", - "total": 9492, - "SUM(sum_boys)": 9492, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tina", - "state": "NY", - "gender": "girl", - "total": 9489, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9489, - "%pct_boys": 0 - }, - { - "name": "Christine", - "state": "TX", - "gender": "girl", - "total": 9483, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9483, - "%pct_boys": 0 - }, - { - "name": "Pamela", - "state": "NY", - "gender": "girl", - "total": 9480, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9480, - "%pct_boys": 0 - }, - { - "name": "Stacey", - "state": "NY", - "gender": "girl", - "total": 9465, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9465, - "%pct_boys": 0 - }, - { - "name": "Julie", - "state": "MA", - "gender": "girl", - "total": 9462, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9462, - "%pct_boys": 0 - }, - { - "name": "Jesse", - "state": "PA", - "gender": "boy", - "total": 9412, - "SUM(sum_boys)": 9412, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lori", - "state": "CA", - "gender": "girl", - "total": 9407, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9407, - "%pct_boys": 0 - }, - { - "name": "Denise", - "state": "PA", - "gender": "girl", - "total": 9399, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9399, - "%pct_boys": 0 - }, - { - "name": "Edward", - "state": "FL", - "gender": "boy", - "total": 9395, - "SUM(sum_boys)": 9395, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dylan", - "state": "IL", - "gender": "boy", - "total": 9372, - "SUM(sum_boys)": 9372, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shawn", - "state": "IL", - "gender": "boy", - "total": 9371, - "SUM(sum_boys)": 9371, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Logan", - "state": "FL", - "gender": "boy", - "total": 9363, - "SUM(sum_boys)": 9363, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathan", - "state": "MA", - "gender": "boy", - "total": 9361, - "SUM(sum_boys)": 9361, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Wendy", - "state": "NY", - "gender": "girl", - "total": 9343, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9343, - "%pct_boys": 0 - }, - { - "name": "Gary", - "state": "TX", - "gender": "boy", - "total": 9339, - "SUM(sum_boys)": 9339, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Douglas", - "state": "MI", - "gender": "boy", - "total": 9326, - "SUM(sum_boys)": 9326, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Teresa", - "state": "TX", - "gender": "girl", - "total": 9325, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9325, - "%pct_boys": 0 - }, - { - "name": "Kathleen", - "state": "MA", - "gender": "girl", - "total": 9307, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9307, - "%pct_boys": 0 - }, - { - "name": "Travis", - "state": "OH", - "gender": "boy", - "total": 9293, - "SUM(sum_boys)": 9293, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Vincent", - "state": "PA", - "gender": "boy", - "total": 9272, - "SUM(sum_boys)": 9272, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Abigail", - "state": "NY", - "gender": "girl", - "total": 9263, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9263, - "%pct_boys": 0 - }, - { - "name": "Gary", - "state": "PA", - "gender": "boy", - "total": 9258, - "SUM(sum_boys)": 9258, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "TX", - "gender": "girl", - "total": 9231, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9231, - "%pct_boys": 0 - }, - { - "name": "Donald", - "state": "TX", - "gender": "boy", - "total": 9224, - "SUM(sum_boys)": 9224, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cody", - "state": "MI", - "gender": "boy", - "total": 9218, - "SUM(sum_boys)": 9218, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erica", - "state": "OH", - "gender": "girl", - "total": 9214, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9214, - "%pct_boys": 0 - }, - { - "name": "Kathryn", - "state": "CA", - "gender": "girl", - "total": 9204, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9204, - "%pct_boys": 0 - }, - { - "name": "Shawn", - "state": "MI", - "gender": "boy", - "total": 9201, - "SUM(sum_boys)": 9201, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Courtney", - "state": "MI", - "gender": "girl", - "total": 9195, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9195, - "%pct_boys": 0 - }, - { - "name": "Erica", - "state": "PA", - "gender": "girl", - "total": 9190, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9190, - "%pct_boys": 0 - }, - { - "name": "Ethan", - "state": "MI", - "gender": "boy", - "total": 9180, - "SUM(sum_boys)": 9180, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emma", - "state": "PA", - "gender": "girl", - "total": 9167, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9167, - "%pct_boys": 0 - }, - { - "name": "Anna", - "state": "PA", - "gender": "girl", - "total": 9166, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9166, - "%pct_boys": 0 - }, - { - "name": "Kristen", - "state": "TX", - "gender": "girl", - "total": 9160, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9160, - "%pct_boys": 0 - }, - { - "name": "Evan", - "state": "PA", - "gender": "boy", - "total": 9140, - "SUM(sum_boys)": 9140, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Luis", - "state": "FL", - "gender": "boy", - "total": 9128, - "SUM(sum_boys)": 9128, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tina", - "state": "IL", - "gender": "girl", - "total": 9123, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9123, - "%pct_boys": 0 - }, - { - "name": "Chad", - "state": "IL", - "gender": "boy", - "total": 9117, - "SUM(sum_boys)": 9117, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Douglas", - "state": "IL", - "gender": "boy", - "total": 9110, - "SUM(sum_boys)": 9110, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Susan", - "state": "TX", - "gender": "girl", - "total": 9105, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9105, - "%pct_boys": 0 - }, - { - "name": "Kristen", - "state": "MA", - "gender": "girl", - "total": 9103, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9103, - "%pct_boys": 0 - }, - { - "name": "Logan", - "state": "CA", - "gender": "boy", - "total": 9101, - "SUM(sum_boys)": 9101, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Olivia", - "state": "FL", - "gender": "girl", - "total": 9086, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9086, - "%pct_boys": 0 - }, - { - "name": "Craig", - "state": "OH", - "gender": "boy", - "total": 9084, - "SUM(sum_boys)": 9084, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Bradley", - "state": "TX", - "gender": "boy", - "total": 9066, - "SUM(sum_boys)": 9066, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Christina", - "state": "MA", - "gender": "girl", - "total": 9060, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9060, - "%pct_boys": 0 - }, - { - "name": "Sharon", - "state": "NY", - "gender": "girl", - "total": 9048, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9048, - "%pct_boys": 0 - }, - { - "name": "Noah", - "state": "OH", - "gender": "boy", - "total": 8996, - "SUM(sum_boys)": 8996, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sandra", - "state": "IL", - "gender": "girl", - "total": 8992, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8992, - "%pct_boys": 0 - }, - { - "name": "Susan", - "state": "MA", - "gender": "girl", - "total": 8990, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8990, - "%pct_boys": 0 - }, - { - "name": "Carlos", - "state": "IL", - "gender": "boy", - "total": 8980, - "SUM(sum_boys)": 8980, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Benjamin", - "state": "NJ", - "gender": "boy", - "total": 8979, - "SUM(sum_boys)": 8979, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Vincent", - "state": "NJ", - "gender": "boy", - "total": 8978, - "SUM(sum_boys)": 8978, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Crystal", - "state": "PA", - "gender": "girl", - "total": 8977, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8977, - "%pct_boys": 0 - }, - { - "name": "Dana", - "state": "PA", - "gender": "girl", - "total": 8972, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8972, - "%pct_boys": 0 - }, - { - "name": "Edward", - "state": "MI", - "gender": "boy", - "total": 8963, - "SUM(sum_boys)": 8963, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Susan", - "state": "NJ", - "gender": "girl", - "total": 8962, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8962, - "%pct_boys": 0 - }, - { - "name": "Holly", - "state": "OH", - "gender": "girl", - "total": 8954, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8954, - "%pct_boys": 0 - }, - { - "name": "Courtney", - "state": "IL", - "gender": "girl", - "total": 8926, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8926, - "%pct_boys": 0 - }, - { - "name": "Patricia", - "state": "NJ", - "gender": "girl", - "total": 8926, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8926, - "%pct_boys": 0 - }, - { - "name": "Jacob", - "state": "NJ", - "gender": "boy", - "total": 8906, - "SUM(sum_boys)": 8906, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Raymond", - "state": "PA", - "gender": "boy", - "total": 8904, - "SUM(sum_boys)": 8904, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Connor", - "state": "CA", - "gender": "boy", - "total": 8903, - "SUM(sum_boys)": 8903, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dana", - "state": "NY", - "gender": "girl", - "total": 8900, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8900, - "%pct_boys": 0 - }, - { - "name": "Jared", - "state": "NY", - "gender": "boy", - "total": 8897, - "SUM(sum_boys)": 8897, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathaniel", - "state": "OH", - "gender": "boy", - "total": 8894, - "SUM(sum_boys)": 8894, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kaitlyn", - "state": "TX", - "gender": "girl", - "total": 8894, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8894, - "%pct_boys": 0 - }, - { - "name": "Tammy", - "state": "MI", - "gender": "girl", - "total": 8892, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8892, - "%pct_boys": 0 - }, - { - "name": "Jacqueline", - "state": "NJ", - "gender": "girl", - "total": 8886, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8886, - "%pct_boys": 0 - }, - { - "name": "Kaitlyn", - "state": "CA", - "gender": "girl", - "total": 8836, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8836, - "%pct_boys": 0 - }, - { - "name": "Alexandra", - "state": "IL", - "gender": "girl", - "total": 8808, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8808, - "%pct_boys": 0 - }, - { - "name": "Dawn", - "state": "NJ", - "gender": "girl", - "total": 8807, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8807, - "%pct_boys": 0 - }, - { - "name": "Ian", - "state": "PA", - "gender": "boy", - "total": 8799, - "SUM(sum_boys)": 8799, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kaitlyn", - "state": "NY", - "gender": "girl", - "total": 8792, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8792, - "%pct_boys": 0 - }, - { - "name": "Luke", - "state": "PA", - "gender": "boy", - "total": 8792, - "SUM(sum_boys)": 8792, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Bryan", - "state": "NJ", - "gender": "boy", - "total": 8792, - "SUM(sum_boys)": 8792, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anna", - "state": "MI", - "gender": "girl", - "total": 8766, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8766, - "%pct_boys": 0 - }, - { - "name": "Tina", - "state": "PA", - "gender": "girl", - "total": 8733, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8733, - "%pct_boys": 0 - }, - { - "name": "Natalie", - "state": "OH", - "gender": "girl", - "total": 8727, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8727, - "%pct_boys": 0 - }, - { - "name": "Keith", - "state": "NJ", - "gender": "boy", - "total": 8724, - "SUM(sum_boys)": 8724, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tracy", - "state": "MI", - "gender": "girl", - "total": 8718, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8718, - "%pct_boys": 0 - }, - { - "name": "Shawn", - "state": "TX", - "gender": "boy", - "total": 8718, - "SUM(sum_boys)": 8718, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Antonio", - "state": "NY", - "gender": "boy", - "total": 8717, - "SUM(sum_boys)": 8717, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ronald", - "state": "FL", - "gender": "boy", - "total": 8710, - "SUM(sum_boys)": 8710, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jordan", - "state": "TX", - "gender": "girl", - "total": 8700, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8700, - "%pct_boys": 0 - }, - { - "name": "Dustin", - "state": "CA", - "gender": "boy", - "total": 8687, - "SUM(sum_boys)": 8687, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donald", - "state": "FL", - "gender": "boy", - "total": 8680, - "SUM(sum_boys)": 8680, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michele", - "state": "NJ", - "gender": "girl", - "total": 8676, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8676, - "%pct_boys": 0 - }, - { - "name": "Ronald", - "state": "TX", - "gender": "boy", - "total": 8669, - "SUM(sum_boys)": 8669, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diana", - "state": "IL", - "gender": "girl", - "total": 8659, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8659, - "%pct_boys": 0 - }, - { - "name": "Catherine", - "state": "IL", - "gender": "girl", - "total": 8643, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8643, - "%pct_boys": 0 - }, - { - "name": "Lori", - "state": "TX", - "gender": "girl", - "total": 8636, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8636, - "%pct_boys": 0 - }, - { - "name": "Brooke", - "state": "OH", - "gender": "girl", - "total": 8634, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8634, - "%pct_boys": 0 - }, - { - "name": "Vanessa", - "state": "IL", - "gender": "girl", - "total": 8632, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8632, - "%pct_boys": 0 - }, - { - "name": "George", - "state": "IL", - "gender": "boy", - "total": 8629, - "SUM(sum_boys)": 8629, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Bryan", - "state": "MI", - "gender": "boy", - "total": 8621, - "SUM(sum_boys)": 8621, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathryn", - "state": "PA", - "gender": "girl", - "total": 8611, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8611, - "%pct_boys": 0 - }, - { - "name": "Caleb", - "state": "OH", - "gender": "boy", - "total": 8608, - "SUM(sum_boys)": 8608, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Evan", - "state": "OH", - "gender": "boy", - "total": 8601, - "SUM(sum_boys)": 8601, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sophia", - "state": "NY", - "gender": "girl", - "total": 8590, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8590, - "%pct_boys": 0 - }, - { - "name": "Brianna", - "state": "PA", - "gender": "girl", - "total": 8588, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8588, - "%pct_boys": 0 - }, - { - "name": "Monica", - "state": "IL", - "gender": "girl", - "total": 8579, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8579, - "%pct_boys": 0 - }, - { - "name": "Jill", - "state": "NY", - "gender": "girl", - "total": 8578, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8578, - "%pct_boys": 0 - }, - { - "name": "Kim", - "state": "NY", - "gender": "girl", - "total": 8578, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8578, - "%pct_boys": 0 - }, - { - "name": "Cameron", - "state": "OH", - "gender": "boy", - "total": 8576, - "SUM(sum_boys)": 8576, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mason", - "state": "TX", - "gender": "boy", - "total": 8573, - "SUM(sum_boys)": 8573, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brooke", - "state": "TX", - "gender": "girl", - "total": 8563, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8563, - "%pct_boys": 0 - }, - { - "name": "Kathleen", - "state": "NJ", - "gender": "girl", - "total": 8560, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8560, - "%pct_boys": 0 - }, - { - "name": "Kathryn", - "state": "OH", - "gender": "girl", - "total": 8539, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8539, - "%pct_boys": 0 - }, - { - "name": "Maria", - "state": "OH", - "gender": "girl", - "total": 8528, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8528, - "%pct_boys": 0 - }, - { - "name": "Travis", - "state": "MI", - "gender": "boy", - "total": 8511, - "SUM(sum_boys)": 8511, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Patricia", - "state": "FL", - "gender": "girl", - "total": 8500, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8500, - "%pct_boys": 0 - }, - { - "name": "Dylan", - "state": "MI", - "gender": "boy", - "total": 8494, - "SUM(sum_boys)": 8494, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lindsey", - "state": "TX", - "gender": "girl", - "total": 8468, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8468, - "%pct_boys": 0 - }, - { - "name": "Craig", - "state": "PA", - "gender": "boy", - "total": 8446, - "SUM(sum_boys)": 8446, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathryn", - "state": "NY", - "gender": "girl", - "total": 8435, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8435, - "%pct_boys": 0 - }, - { - "name": "Julia", - "state": "TX", - "gender": "girl", - "total": 8418, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8418, - "%pct_boys": 0 - }, - { - "name": "Cameron", - "state": "FL", - "gender": "boy", - "total": 8416, - "SUM(sum_boys)": 8416, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Samuel", - "state": "NJ", - "gender": "boy", - "total": 8413, - "SUM(sum_boys)": 8413, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Austin", - "state": "NY", - "gender": "boy", - "total": 8409, - "SUM(sum_boys)": 8409, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Frank", - "state": "PA", - "gender": "boy", - "total": 8401, - "SUM(sum_boys)": 8401, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carrie", - "state": "CA", - "gender": "girl", - "total": 8401, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8401, - "%pct_boys": 0 - }, - { - "name": "Christine", - "state": "FL", - "gender": "girl", - "total": 8394, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8394, - "%pct_boys": 0 - }, - { - "name": "Alyssa", - "state": "NJ", - "gender": "girl", - "total": 8391, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8391, - "%pct_boys": 0 - }, - { - "name": "Miguel", - "state": "NY", - "gender": "boy", - "total": 8388, - "SUM(sum_boys)": 8388, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tina", - "state": "MI", - "gender": "girl", - "total": 8387, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8387, - "%pct_boys": 0 - }, - { - "name": "George", - "state": "FL", - "gender": "boy", - "total": 8380, - "SUM(sum_boys)": 8380, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jared", - "state": "PA", - "gender": "boy", - "total": 8374, - "SUM(sum_boys)": 8374, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julia", - "state": "IL", - "gender": "girl", - "total": 8368, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8368, - "%pct_boys": 0 - }, - { - "name": "Tammy", - "state": "IL", - "gender": "girl", - "total": 8363, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8363, - "%pct_boys": 0 - }, - { - "name": "Alex", - "state": "IL", - "gender": "boy", - "total": 8311, - "SUM(sum_boys)": 8311, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sydney", - "state": "TX", - "gender": "girl", - "total": 8302, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8302, - "%pct_boys": 0 - }, - { - "name": "Grace", - "state": "IL", - "gender": "girl", - "total": 8293, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8293, - "%pct_boys": 0 - }, - { - "name": "Derek", - "state": "PA", - "gender": "boy", - "total": 8288, - "SUM(sum_boys)": 8288, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Morgan", - "state": "PA", - "gender": "girl", - "total": 8287, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8287, - "%pct_boys": 0 - }, - { - "name": "Gary", - "state": "MI", - "gender": "boy", - "total": 8283, - "SUM(sum_boys)": 8283, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emma", - "state": "MI", - "gender": "girl", - "total": 8269, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8269, - "%pct_boys": 0 - }, - { - "name": "Natalie", - "state": "PA", - "gender": "girl", - "total": 8269, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8269, - "%pct_boys": 0 - }, - { - "name": "Madison", - "state": "IL", - "gender": "girl", - "total": 8251, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8251, - "%pct_boys": 0 - }, - { - "name": "Alicia", - "state": "NY", - "gender": "girl", - "total": 8232, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8232, - "%pct_boys": 0 - }, - { - "name": "Kristen", - "state": "MI", - "gender": "girl", - "total": 8225, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8225, - "%pct_boys": 0 - }, - { - "name": "Catherine", - "state": "PA", - "gender": "girl", - "total": 8207, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8207, - "%pct_boys": 0 - }, - { - "name": "Erin", - "state": "FL", - "gender": "girl", - "total": 8206, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8206, - "%pct_boys": 0 - }, - { - "name": "Savannah", - "state": "TX", - "gender": "girl", - "total": 8202, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8202, - "%pct_boys": 0 - }, - { - "name": "Jacqueline", - "state": "PA", - "gender": "girl", - "total": 8182, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8182, - "%pct_boys": 0 - }, - { - "name": "Catherine", - "state": "TX", - "gender": "girl", - "total": 8178, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8178, - "%pct_boys": 0 - }, - { - "name": "April", - "state": "OH", - "gender": "girl", - "total": 8165, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8165, - "%pct_boys": 0 - }, - { - "name": "Derek", - "state": "MI", - "gender": "boy", - "total": 8153, - "SUM(sum_boys)": 8153, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brandon", - "state": "MA", - "gender": "boy", - "total": 8148, - "SUM(sum_boys)": 8148, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cynthia", - "state": "OH", - "gender": "girl", - "total": 8134, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8134, - "%pct_boys": 0 - }, - { - "name": "Brianna", - "state": "IL", - "gender": "girl", - "total": 8100, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8100, - "%pct_boys": 0 - }, - { - "name": "Logan", - "state": "PA", - "gender": "boy", - "total": 8098, - "SUM(sum_boys)": 8098, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Allison", - "state": "NJ", - "gender": "girl", - "total": 8069, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8069, - "%pct_boys": 0 - }, - { - "name": "Allison", - "state": "FL", - "gender": "girl", - "total": 8065, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8065, - "%pct_boys": 0 - }, - { - "name": "Kristin", - "state": "IL", - "gender": "girl", - "total": 8065, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8065, - "%pct_boys": 0 - }, - { - "name": "Stacy", - "state": "TX", - "gender": "girl", - "total": 8029, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 8029, - "%pct_boys": 0 - }, - { - "name": "Corey", - "state": "NY", - "gender": "boy", - "total": 8025, - "SUM(sum_boys)": 8025, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Luis", - "state": "NJ", - "gender": "boy", - "total": 7998, - "SUM(sum_boys)": 7998, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katie", - "state": "PA", - "gender": "girl", - "total": 7986, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7986, - "%pct_boys": 0 - }, - { - "name": "Allison", - "state": "MI", - "gender": "girl", - "total": 7955, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7955, - "%pct_boys": 0 - }, - { - "name": "Megan", - "state": "MA", - "gender": "girl", - "total": 7954, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7954, - "%pct_boys": 0 - }, - { - "name": "Raymond", - "state": "TX", - "gender": "boy", - "total": 7940, - "SUM(sum_boys)": 7940, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Derek", - "state": "MA", - "gender": "boy", - "total": 7933, - "SUM(sum_boys)": 7933, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexandra", - "state": "PA", - "gender": "girl", - "total": 7925, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7925, - "%pct_boys": 0 - }, - { - "name": "Alexandra", - "state": "NJ", - "gender": "girl", - "total": 7920, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7920, - "%pct_boys": 0 - }, - { - "name": "Crystal", - "state": "MI", - "gender": "girl", - "total": 7916, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7916, - "%pct_boys": 0 - }, - { - "name": "Connor", - "state": "NY", - "gender": "boy", - "total": 7903, - "SUM(sum_boys)": 7903, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Logan", - "state": "MI", - "gender": "boy", - "total": 7902, - "SUM(sum_boys)": 7902, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathleen", - "state": "OH", - "gender": "girl", - "total": 7899, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7899, - "%pct_boys": 0 - }, - { - "name": "Noah", - "state": "NY", - "gender": "boy", - "total": 7880, - "SUM(sum_boys)": 7880, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Noah", - "state": "FL", - "gender": "boy", - "total": 7871, - "SUM(sum_boys)": 7871, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angela", - "state": "NJ", - "gender": "girl", - "total": 7869, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7869, - "%pct_boys": 0 - }, - { - "name": "Shawn", - "state": "MA", - "gender": "boy", - "total": 7868, - "SUM(sum_boys)": 7868, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kenneth", - "state": "MA", - "gender": "boy", - "total": 7867, - "SUM(sum_boys)": 7867, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elijah", - "state": "TX", - "gender": "boy", - "total": 7865, - "SUM(sum_boys)": 7865, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julia", - "state": "NJ", - "gender": "girl", - "total": 7863, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7863, - "%pct_boys": 0 - }, - { - "name": "Craig", - "state": "MI", - "gender": "boy", - "total": 7857, - "SUM(sum_boys)": 7857, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristen", - "state": "IL", - "gender": "girl", - "total": 7852, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7852, - "%pct_boys": 0 - }, - { - "name": "Kristin", - "state": "PA", - "gender": "girl", - "total": 7849, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7849, - "%pct_boys": 0 - }, - { - "name": "Grace", - "state": "NY", - "gender": "girl", - "total": 7839, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7839, - "%pct_boys": 0 - }, - { - "name": "Andrea", - "state": "NJ", - "gender": "girl", - "total": 7835, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7835, - "%pct_boys": 0 - }, - { - "name": "Abigail", - "state": "FL", - "gender": "girl", - "total": 7817, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7817, - "%pct_boys": 0 - }, - { - "name": "Shane", - "state": "OH", - "gender": "boy", - "total": 7810, - "SUM(sum_boys)": 7810, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristen", - "state": "NJ", - "gender": "girl", - "total": 7801, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7801, - "%pct_boys": 0 - }, - { - "name": "Dennis", - "state": "PA", - "gender": "boy", - "total": 7795, - "SUM(sum_boys)": 7795, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julia", - "state": "MA", - "gender": "girl", - "total": 7792, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7792, - "%pct_boys": 0 - }, - { - "name": "Luke", - "state": "CA", - "gender": "boy", - "total": 7786, - "SUM(sum_boys)": 7786, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Haley", - "state": "CA", - "gender": "girl", - "total": 7765, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7765, - "%pct_boys": 0 - }, - { - "name": "Travis", - "state": "PA", - "gender": "boy", - "total": 7758, - "SUM(sum_boys)": 7758, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diane", - "state": "NY", - "gender": "girl", - "total": 7755, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7755, - "%pct_boys": 0 - }, - { - "name": "Jared", - "state": "OH", - "gender": "boy", - "total": 7747, - "SUM(sum_boys)": 7747, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Marcus", - "state": "IL", - "gender": "boy", - "total": 7740, - "SUM(sum_boys)": 7740, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Catherine", - "state": "NJ", - "gender": "girl", - "total": 7731, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7731, - "%pct_boys": 0 - }, - { - "name": "Cody", - "state": "IL", - "gender": "boy", - "total": 7721, - "SUM(sum_boys)": 7721, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Olivia", - "state": "MA", - "gender": "girl", - "total": 7715, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7715, - "%pct_boys": 0 - }, - { - "name": "Derek", - "state": "OH", - "gender": "boy", - "total": 7715, - "SUM(sum_boys)": 7715, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erica", - "state": "MI", - "gender": "girl", - "total": 7714, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7714, - "%pct_boys": 0 - }, - { - "name": "Pamela", - "state": "PA", - "gender": "girl", - "total": 7705, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7705, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "NJ", - "gender": "girl", - "total": 7699, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7699, - "%pct_boys": 0 - }, - { - "name": "Wendy", - "state": "PA", - "gender": "girl", - "total": 7696, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7696, - "%pct_boys": 0 - }, - { - "name": "Evan", - "state": "MI", - "gender": "boy", - "total": 7685, - "SUM(sum_boys)": 7685, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tracy", - "state": "TX", - "gender": "girl", - "total": 7652, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7652, - "%pct_boys": 0 - }, - { - "name": "Keith", - "state": "TX", - "gender": "boy", - "total": 7651, - "SUM(sum_boys)": 7651, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jack", - "state": "IL", - "gender": "boy", - "total": 7650, - "SUM(sum_boys)": 7650, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donna", - "state": "PA", - "gender": "girl", - "total": 7644, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7644, - "%pct_boys": 0 - }, - { - "name": "Caleb", - "state": "FL", - "gender": "boy", - "total": 7641, - "SUM(sum_boys)": 7641, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jesse", - "state": "FL", - "gender": "boy", - "total": 7621, - "SUM(sum_boys)": 7621, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Emma", - "state": "FL", - "gender": "girl", - "total": 7620, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7620, - "%pct_boys": 0 - }, - { - "name": "Elijah", - "state": "NY", - "gender": "boy", - "total": 7620, - "SUM(sum_boys)": 7620, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erica", - "state": "FL", - "gender": "girl", - "total": 7614, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7614, - "%pct_boys": 0 - }, - { - "name": "Abigail", - "state": "MI", - "gender": "girl", - "total": 7610, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7610, - "%pct_boys": 0 - }, - { - "name": "Dennis", - "state": "CA", - "gender": "boy", - "total": 7590, - "SUM(sum_boys)": 7590, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tina", - "state": "TX", - "gender": "girl", - "total": 7589, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7589, - "%pct_boys": 0 - }, - { - "name": "Alex", - "state": "FL", - "gender": "boy", - "total": 7584, - "SUM(sum_boys)": 7584, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelsey", - "state": "CA", - "gender": "girl", - "total": 7580, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7580, - "%pct_boys": 0 - }, - { - "name": "Victor", - "state": "IL", - "gender": "boy", - "total": 7571, - "SUM(sum_boys)": 7571, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jill", - "state": "PA", - "gender": "girl", - "total": 7568, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7568, - "%pct_boys": 0 - }, - { - "name": "Noah", - "state": "PA", - "gender": "boy", - "total": 7565, - "SUM(sum_boys)": 7565, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathryn", - "state": "MI", - "gender": "girl", - "total": 7550, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7550, - "%pct_boys": 0 - }, - { - "name": "Lori", - "state": "MI", - "gender": "girl", - "total": 7549, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7549, - "%pct_boys": 0 - }, - { - "name": "Hannah", - "state": "MA", - "gender": "girl", - "total": 7544, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7544, - "%pct_boys": 0 - }, - { - "name": "Cameron", - "state": "MI", - "gender": "boy", - "total": 7512, - "SUM(sum_boys)": 7512, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chelsea", - "state": "NY", - "gender": "girl", - "total": 7506, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7506, - "%pct_boys": 0 - }, - { - "name": "April", - "state": "FL", - "gender": "girl", - "total": 7504, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7504, - "%pct_boys": 0 - }, - { - "name": "Katie", - "state": "CA", - "gender": "girl", - "total": 7498, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7498, - "%pct_boys": 0 - }, - { - "name": "Nathaniel", - "state": "NY", - "gender": "boy", - "total": 7496, - "SUM(sum_boys)": 7496, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Luke", - "state": "OH", - "gender": "boy", - "total": 7473, - "SUM(sum_boys)": 7473, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jenna", - "state": "PA", - "gender": "girl", - "total": 7472, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7472, - "%pct_boys": 0 - }, - { - "name": "Jesse", - "state": "OH", - "gender": "boy", - "total": 7468, - "SUM(sum_boys)": 7468, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Keith", - "state": "FL", - "gender": "boy", - "total": 7455, - "SUM(sum_boys)": 7455, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Patricia", - "state": "MI", - "gender": "girl", - "total": 7455, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7455, - "%pct_boys": 0 - }, - { - "name": "Cynthia", - "state": "FL", - "gender": "girl", - "total": 7450, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7450, - "%pct_boys": 0 - }, - { - "name": "Phillip", - "state": "TX", - "gender": "boy", - "total": 7443, - "SUM(sum_boys)": 7443, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Craig", - "state": "CA", - "gender": "boy", - "total": 7431, - "SUM(sum_boys)": 7431, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Pamela", - "state": "TX", - "gender": "girl", - "total": 7404, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7404, - "%pct_boys": 0 - }, - { - "name": "Kayla", - "state": "NJ", - "gender": "girl", - "total": 7396, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7396, - "%pct_boys": 0 - }, - { - "name": "Jill", - "state": "IL", - "gender": "girl", - "total": 7394, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7394, - "%pct_boys": 0 - }, - { - "name": "Christian", - "state": "OH", - "gender": "boy", - "total": 7392, - "SUM(sum_boys)": 7392, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melanie", - "state": "FL", - "gender": "girl", - "total": 7388, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7388, - "%pct_boys": 0 - }, - { - "name": "Lori", - "state": "IL", - "gender": "girl", - "total": 7374, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7374, - "%pct_boys": 0 - }, - { - "name": "Noah", - "state": "MI", - "gender": "boy", - "total": 7350, - "SUM(sum_boys)": 7350, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Denise", - "state": "TX", - "gender": "girl", - "total": 7349, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7349, - "%pct_boys": 0 - }, - { - "name": "Emma", - "state": "MA", - "gender": "girl", - "total": 7333, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7333, - "%pct_boys": 0 - }, - { - "name": "Morgan", - "state": "FL", - "gender": "girl", - "total": 7328, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7328, - "%pct_boys": 0 - }, - { - "name": "Brooke", - "state": "FL", - "gender": "girl", - "total": 7313, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7313, - "%pct_boys": 0 - }, - { - "name": "Stacey", - "state": "PA", - "gender": "girl", - "total": 7306, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7306, - "%pct_boys": 0 - }, - { - "name": "Nathaniel", - "state": "IL", - "gender": "boy", - "total": 7305, - "SUM(sum_boys)": 7305, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristin", - "state": "MI", - "gender": "girl", - "total": 7302, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7302, - "%pct_boys": 0 - }, - { - "name": "Ronald", - "state": "NJ", - "gender": "boy", - "total": 7301, - "SUM(sum_boys)": 7301, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Larry", - "state": "OH", - "gender": "boy", - "total": 7295, - "SUM(sum_boys)": 7295, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anna", - "state": "FL", - "gender": "girl", - "total": 7285, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7285, - "%pct_boys": 0 - }, - { - "name": "Larry", - "state": "CA", - "gender": "boy", - "total": 7267, - "SUM(sum_boys)": 7267, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Craig", - "state": "IL", - "gender": "boy", - "total": 7251, - "SUM(sum_boys)": 7251, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sophia", - "state": "TX", - "gender": "girl", - "total": 7234, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7234, - "%pct_boys": 0 - }, - { - "name": "Holly", - "state": "PA", - "gender": "girl", - "total": 7233, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7233, - "%pct_boys": 0 - }, - { - "name": "Carrie", - "state": "OH", - "gender": "girl", - "total": 7215, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7215, - "%pct_boys": 0 - }, - { - "name": "Brittany", - "state": "NJ", - "gender": "girl", - "total": 7206, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7206, - "%pct_boys": 0 - }, - { - "name": "Cassandra", - "state": "TX", - "gender": "girl", - "total": 7199, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7199, - "%pct_boys": 0 - }, - { - "name": "Catherine", - "state": "MA", - "gender": "girl", - "total": 7196, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7196, - "%pct_boys": 0 - }, - { - "name": "Ian", - "state": "OH", - "gender": "boy", - "total": 7193, - "SUM(sum_boys)": 7193, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adrian", - "state": "FL", - "gender": "boy", - "total": 7191, - "SUM(sum_boys)": 7191, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sophia", - "state": "FL", - "gender": "girl", - "total": 7181, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7181, - "%pct_boys": 0 - }, - { - "name": "Brooke", - "state": "CA", - "gender": "girl", - "total": 7179, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7179, - "%pct_boys": 0 - }, - { - "name": "Cheryl", - "state": "NY", - "gender": "girl", - "total": 7178, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7178, - "%pct_boys": 0 - }, - { - "name": "Debra", - "state": "NY", - "gender": "girl", - "total": 7176, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7176, - "%pct_boys": 0 - }, - { - "name": "Peter", - "state": "MI", - "gender": "boy", - "total": 7167, - "SUM(sum_boys)": 7167, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Keith", - "state": "MA", - "gender": "boy", - "total": 7147, - "SUM(sum_boys)": 7147, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Valerie", - "state": "NY", - "gender": "girl", - "total": 7120, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7120, - "%pct_boys": 0 - }, - { - "name": "Stacey", - "state": "CA", - "gender": "girl", - "total": 7112, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7112, - "%pct_boys": 0 - }, - { - "name": "Tara", - "state": "NJ", - "gender": "girl", - "total": 7110, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7110, - "%pct_boys": 0 - }, - { - "name": "Kaitlyn", - "state": "PA", - "gender": "girl", - "total": 7101, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7101, - "%pct_boys": 0 - }, - { - "name": "Brianna", - "state": "NJ", - "gender": "girl", - "total": 7090, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7090, - "%pct_boys": 0 - }, - { - "name": "Brianna", - "state": "OH", - "gender": "girl", - "total": 7088, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7088, - "%pct_boys": 0 - }, - { - "name": "Hunter", - "state": "FL", - "gender": "boy", - "total": 7081, - "SUM(sum_boys)": 7081, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "George", - "state": "OH", - "gender": "boy", - "total": 7079, - "SUM(sum_boys)": 7079, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Frank", - "state": "IL", - "gender": "boy", - "total": 7055, - "SUM(sum_boys)": 7055, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Pamela", - "state": "OH", - "gender": "girl", - "total": 7052, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7052, - "%pct_boys": 0 - }, - { - "name": "Grace", - "state": "OH", - "gender": "girl", - "total": 7048, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7048, - "%pct_boys": 0 - }, - { - "name": "Jill", - "state": "OH", - "gender": "girl", - "total": 7045, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7045, - "%pct_boys": 0 - }, - { - "name": "Victoria", - "state": "MI", - "gender": "girl", - "total": 7043, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7043, - "%pct_boys": 0 - }, - { - "name": "Julie", - "state": "FL", - "gender": "girl", - "total": 7041, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7041, - "%pct_boys": 0 - }, - { - "name": "Marcus", - "state": "FL", - "gender": "boy", - "total": 7017, - "SUM(sum_boys)": 7017, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jesus", - "state": "IL", - "gender": "boy", - "total": 7016, - "SUM(sum_boys)": 7016, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Denise", - "state": "IL", - "gender": "girl", - "total": 7007, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7007, - "%pct_boys": 0 - }, - { - "name": "Olivia", - "state": "NJ", - "gender": "girl", - "total": 7005, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 7005, - "%pct_boys": 0 - }, - { - "name": "Luke", - "state": "TX", - "gender": "boy", - "total": 6996, - "SUM(sum_boys)": 6996, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristen", - "state": "FL", - "gender": "girl", - "total": 6993, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6993, - "%pct_boys": 0 - }, - { - "name": "Lucas", - "state": "IL", - "gender": "boy", - "total": 6983, - "SUM(sum_boys)": 6983, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathaniel", - "state": "PA", - "gender": "boy", - "total": 6977, - "SUM(sum_boys)": 6977, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Morgan", - "state": "IL", - "gender": "girl", - "total": 6970, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6970, - "%pct_boys": 0 - }, - { - "name": "Jacqueline", - "state": "FL", - "gender": "girl", - "total": 6946, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6946, - "%pct_boys": 0 - }, - { - "name": "Luke", - "state": "IL", - "gender": "boy", - "total": 6940, - "SUM(sum_boys)": 6940, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brooke", - "state": "PA", - "gender": "girl", - "total": 6938, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6938, - "%pct_boys": 0 - }, - { - "name": "Barbara", - "state": "PA", - "gender": "girl", - "total": 6932, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6932, - "%pct_boys": 0 - }, - { - "name": "Maria", - "state": "MI", - "gender": "girl", - "total": 6917, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6917, - "%pct_boys": 0 - }, - { - "name": "Andrea", - "state": "MA", - "gender": "girl", - "total": 6910, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6910, - "%pct_boys": 0 - }, - { - "name": "Teresa", - "state": "OH", - "gender": "girl", - "total": 6898, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6898, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "MA", - "gender": "girl", - "total": 6889, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6889, - "%pct_boys": 0 - }, - { - "name": "Lindsey", - "state": "OH", - "gender": "girl", - "total": 6878, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6878, - "%pct_boys": 0 - }, - { - "name": "Jenna", - "state": "OH", - "gender": "girl", - "total": 6875, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6875, - "%pct_boys": 0 - }, - { - "name": "Raymond", - "state": "NJ", - "gender": "boy", - "total": 6872, - "SUM(sum_boys)": 6872, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tammy", - "state": "FL", - "gender": "girl", - "total": 6869, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6869, - "%pct_boys": 0 - }, - { - "name": "Karen", - "state": "FL", - "gender": "girl", - "total": 6846, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6846, - "%pct_boys": 0 - }, - { - "name": "Dana", - "state": "NJ", - "gender": "girl", - "total": 6845, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6845, - "%pct_boys": 0 - }, - { - "name": "Margaret", - "state": "PA", - "gender": "girl", - "total": 6840, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6840, - "%pct_boys": 0 - }, - { - "name": "Dennis", - "state": "MI", - "gender": "boy", - "total": 6831, - "SUM(sum_boys)": 6831, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Corey", - "state": "FL", - "gender": "boy", - "total": 6816, - "SUM(sum_boys)": 6816, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathryn", - "state": "TX", - "gender": "girl", - "total": 6809, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6809, - "%pct_boys": 0 - }, - { - "name": "Jamie", - "state": "FL", - "gender": "girl", - "total": 6808, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6808, - "%pct_boys": 0 - }, - { - "name": "Holly", - "state": "MI", - "gender": "girl", - "total": 6808, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6808, - "%pct_boys": 0 - }, - { - "name": "Carrie", - "state": "MI", - "gender": "girl", - "total": 6803, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6803, - "%pct_boys": 0 - }, - { - "name": "Natalie", - "state": "MI", - "gender": "girl", - "total": 6803, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6803, - "%pct_boys": 0 - }, - { - "name": "Wendy", - "state": "MI", - "gender": "girl", - "total": 6784, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6784, - "%pct_boys": 0 - }, - { - "name": "April", - "state": "MI", - "gender": "girl", - "total": 6777, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6777, - "%pct_boys": 0 - }, - { - "name": "Alexis", - "state": "NJ", - "gender": "girl", - "total": 6775, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6775, - "%pct_boys": 0 - }, - { - "name": "Aaron", - "state": "NJ", - "gender": "boy", - "total": 6774, - "SUM(sum_boys)": 6774, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Evan", - "state": "IL", - "gender": "boy", - "total": 6768, - "SUM(sum_boys)": 6768, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sara", - "state": "NJ", - "gender": "girl", - "total": 6768, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6768, - "%pct_boys": 0 - }, - { - "name": "Kathleen", - "state": "MI", - "gender": "girl", - "total": 6766, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6766, - "%pct_boys": 0 - }, - { - "name": "Corey", - "state": "OH", - "gender": "boy", - "total": 6758, - "SUM(sum_boys)": 6758, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeffery", - "state": "OH", - "gender": "boy", - "total": 6735, - "SUM(sum_boys)": 6735, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chelsea", - "state": "MI", - "gender": "girl", - "total": 6731, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6731, - "%pct_boys": 0 - }, - { - "name": "Corey", - "state": "PA", - "gender": "boy", - "total": 6722, - "SUM(sum_boys)": 6722, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Wendy", - "state": "TX", - "gender": "girl", - "total": 6720, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6720, - "%pct_boys": 0 - }, - { - "name": "Brooke", - "state": "MI", - "gender": "girl", - "total": 6698, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6698, - "%pct_boys": 0 - }, - { - "name": "Corey", - "state": "MI", - "gender": "boy", - "total": 6697, - "SUM(sum_boys)": 6697, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tara", - "state": "CA", - "gender": "girl", - "total": 6694, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6694, - "%pct_boys": 0 - }, - { - "name": "Julia", - "state": "OH", - "gender": "girl", - "total": 6690, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6690, - "%pct_boys": 0 - }, - { - "name": "Alexandra", - "state": "MA", - "gender": "girl", - "total": 6683, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6683, - "%pct_boys": 0 - }, - { - "name": "Jeremy", - "state": "MA", - "gender": "boy", - "total": 6681, - "SUM(sum_boys)": 6681, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dylan", - "state": "NJ", - "gender": "boy", - "total": 6679, - "SUM(sum_boys)": 6679, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katie", - "state": "OH", - "gender": "girl", - "total": 6678, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6678, - "%pct_boys": 0 - }, - { - "name": "Kaitlyn", - "state": "OH", - "gender": "girl", - "total": 6659, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6659, - "%pct_boys": 0 - }, - { - "name": "Jack", - "state": "OH", - "gender": "boy", - "total": 6655, - "SUM(sum_boys)": 6655, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tara", - "state": "OH", - "gender": "girl", - "total": 6651, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6651, - "%pct_boys": 0 - }, - { - "name": "Monica", - "state": "NY", - "gender": "girl", - "total": 6651, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6651, - "%pct_boys": 0 - }, - { - "name": "Victoria", - "state": "MA", - "gender": "girl", - "total": 6615, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6615, - "%pct_boys": 0 - }, - { - "name": "Alex", - "state": "OH", - "gender": "boy", - "total": 6614, - "SUM(sum_boys)": 6614, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katie", - "state": "MI", - "gender": "girl", - "total": 6611, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6611, - "%pct_boys": 0 - }, - { - "name": "Deborah", - "state": "OH", - "gender": "girl", - "total": 6610, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6610, - "%pct_boys": 0 - }, - { - "name": "Linda", - "state": "PA", - "gender": "girl", - "total": 6609, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6609, - "%pct_boys": 0 - }, - { - "name": "Tiffany", - "state": "NJ", - "gender": "girl", - "total": 6608, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6608, - "%pct_boys": 0 - }, - { - "name": "Catherine", - "state": "OH", - "gender": "girl", - "total": 6598, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6598, - "%pct_boys": 0 - }, - { - "name": "Connor", - "state": "PA", - "gender": "boy", - "total": 6587, - "SUM(sum_boys)": 6587, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sharon", - "state": "PA", - "gender": "girl", - "total": 6572, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6572, - "%pct_boys": 0 - }, - { - "name": "Nathaniel", - "state": "TX", - "gender": "boy", - "total": 6563, - "SUM(sum_boys)": 6563, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jill", - "state": "MI", - "gender": "girl", - "total": 6560, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6560, - "%pct_boys": 0 - }, - { - "name": "Jeffery", - "state": "MI", - "gender": "boy", - "total": 6559, - "SUM(sum_boys)": 6559, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Deborah", - "state": "PA", - "gender": "girl", - "total": 6557, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6557, - "%pct_boys": 0 - }, - { - "name": "Kaitlyn", - "state": "FL", - "gender": "girl", - "total": 6556, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6556, - "%pct_boys": 0 - }, - { - "name": "Travis", - "state": "NY", - "gender": "boy", - "total": 6549, - "SUM(sum_boys)": 6549, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Caleb", - "state": "MI", - "gender": "boy", - "total": 6548, - "SUM(sum_boys)": 6548, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chelsea", - "state": "FL", - "gender": "girl", - "total": 6542, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6542, - "%pct_boys": 0 - }, - { - "name": "Nancy", - "state": "IL", - "gender": "girl", - "total": 6536, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6536, - "%pct_boys": 0 - }, - { - "name": "Aaron", - "state": "MA", - "gender": "boy", - "total": 6516, - "SUM(sum_boys)": 6516, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Randy", - "state": "TX", - "gender": "boy", - "total": 6512, - "SUM(sum_boys)": 6512, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Catherine", - "state": "FL", - "gender": "girl", - "total": 6505, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6505, - "%pct_boys": 0 - }, - { - "name": "Logan", - "state": "IL", - "gender": "boy", - "total": 6504, - "SUM(sum_boys)": 6504, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Pamela", - "state": "IL", - "gender": "girl", - "total": 6496, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6496, - "%pct_boys": 0 - }, - { - "name": "Kayla", - "state": "MA", - "gender": "girl", - "total": 6488, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6488, - "%pct_boys": 0 - }, - { - "name": "Morgan", - "state": "NY", - "gender": "girl", - "total": 6483, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6483, - "%pct_boys": 0 - }, - { - "name": "Noah", - "state": "IL", - "gender": "boy", - "total": 6474, - "SUM(sum_boys)": 6474, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Holly", - "state": "TX", - "gender": "girl", - "total": 6467, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6467, - "%pct_boys": 0 - }, - { - "name": "Cynthia", - "state": "PA", - "gender": "girl", - "total": 6459, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6459, - "%pct_boys": 0 - }, - { - "name": "Dennis", - "state": "OH", - "gender": "boy", - "total": 6452, - "SUM(sum_boys)": 6452, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Wendy", - "state": "OH", - "gender": "girl", - "total": 6452, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6452, - "%pct_boys": 0 - }, - { - "name": "Raymond", - "state": "OH", - "gender": "boy", - "total": 6451, - "SUM(sum_boys)": 6451, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gary", - "state": "IL", - "gender": "boy", - "total": 6443, - "SUM(sum_boys)": 6443, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Pamela", - "state": "MI", - "gender": "girl", - "total": 6438, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6438, - "%pct_boys": 0 - }, - { - "name": "Isaiah", - "state": "NY", - "gender": "boy", - "total": 6436, - "SUM(sum_boys)": 6436, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Derek", - "state": "IL", - "gender": "boy", - "total": 6429, - "SUM(sum_boys)": 6429, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elijah", - "state": "FL", - "gender": "boy", - "total": 6423, - "SUM(sum_boys)": 6423, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Monica", - "state": "FL", - "gender": "girl", - "total": 6413, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6413, - "%pct_boys": 0 - }, - { - "name": "Ian", - "state": "FL", - "gender": "boy", - "total": 6411, - "SUM(sum_boys)": 6411, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Travis", - "state": "IL", - "gender": "boy", - "total": 6410, - "SUM(sum_boys)": 6410, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carrie", - "state": "IL", - "gender": "girl", - "total": 6406, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6406, - "%pct_boys": 0 - }, - { - "name": "Shawn", - "state": "NJ", - "gender": "boy", - "total": 6386, - "SUM(sum_boys)": 6386, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angela", - "state": "MA", - "gender": "girl", - "total": 6366, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6366, - "%pct_boys": 0 - }, - { - "name": "Jesse", - "state": "MI", - "gender": "boy", - "total": 6361, - "SUM(sum_boys)": 6361, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chelsea", - "state": "OH", - "gender": "girl", - "total": 6354, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6354, - "%pct_boys": 0 - }, - { - "name": "Miguel", - "state": "IL", - "gender": "boy", - "total": 6348, - "SUM(sum_boys)": 6348, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Morgan", - "state": "MI", - "gender": "girl", - "total": 6346, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6346, - "%pct_boys": 0 - }, - { - "name": "Patricia", - "state": "MA", - "gender": "girl", - "total": 6340, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6340, - "%pct_boys": 0 - }, - { - "name": "Abigail", - "state": "MA", - "gender": "girl", - "total": 6337, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6337, - "%pct_boys": 0 - }, - { - "name": "Brianna", - "state": "MI", - "gender": "girl", - "total": 6329, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6329, - "%pct_boys": 0 - }, - { - "name": "Kristin", - "state": "OH", - "gender": "girl", - "total": 6329, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6329, - "%pct_boys": 0 - }, - { - "name": "Evan", - "state": "FL", - "gender": "boy", - "total": 6321, - "SUM(sum_boys)": 6321, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacy", - "state": "OH", - "gender": "girl", - "total": 6319, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6319, - "%pct_boys": 0 - }, - { - "name": "Christian", - "state": "MI", - "gender": "boy", - "total": 6310, - "SUM(sum_boys)": 6310, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sara", - "state": "MA", - "gender": "girl", - "total": 6299, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6299, - "%pct_boys": 0 - }, - { - "name": "Allison", - "state": "MA", - "gender": "girl", - "total": 6297, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6297, - "%pct_boys": 0 - }, - { - "name": "Pamela", - "state": "CA", - "gender": "girl", - "total": 6286, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6286, - "%pct_boys": 0 - }, - { - "name": "Alicia", - "state": "FL", - "gender": "girl", - "total": 6285, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6285, - "%pct_boys": 0 - }, - { - "name": "Connor", - "state": "OH", - "gender": "boy", - "total": 6279, - "SUM(sum_boys)": 6279, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donna", - "state": "TX", - "gender": "girl", - "total": 6279, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6279, - "%pct_boys": 0 - }, - { - "name": "Leslie", - "state": "IL", - "gender": "girl", - "total": 6278, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6278, - "%pct_boys": 0 - }, - { - "name": "Brenda", - "state": "NY", - "gender": "girl", - "total": 6277, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6277, - "%pct_boys": 0 - }, - { - "name": "Linda", - "state": "IL", - "gender": "girl", - "total": 6271, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6271, - "%pct_boys": 0 - }, - { - "name": "Kelsey", - "state": "TX", - "gender": "girl", - "total": 6262, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6262, - "%pct_boys": 0 - }, - { - "name": "Sydney", - "state": "OH", - "gender": "girl", - "total": 6250, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6250, - "%pct_boys": 0 - }, - { - "name": "Theresa", - "state": "CA", - "gender": "girl", - "total": 6244, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6244, - "%pct_boys": 0 - }, - { - "name": "Corey", - "state": "IL", - "gender": "boy", - "total": 6241, - "SUM(sum_boys)": 6241, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Caleb", - "state": "CA", - "gender": "boy", - "total": 6236, - "SUM(sum_boys)": 6236, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dana", - "state": "IL", - "gender": "girl", - "total": 6226, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6226, - "%pct_boys": 0 - }, - { - "name": "Savannah", - "state": "FL", - "gender": "girl", - "total": 6225, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6225, - "%pct_boys": 0 - }, - { - "name": "Deborah", - "state": "IL", - "gender": "girl", - "total": 6218, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6218, - "%pct_boys": 0 - }, - { - "name": "Denise", - "state": "OH", - "gender": "girl", - "total": 6214, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6214, - "%pct_boys": 0 - }, - { - "name": "Jill", - "state": "CA", - "gender": "girl", - "total": 6208, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6208, - "%pct_boys": 0 - }, - { - "name": "Julia", - "state": "FL", - "gender": "girl", - "total": 6205, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6205, - "%pct_boys": 0 - }, - { - "name": "Theresa", - "state": "PA", - "gender": "girl", - "total": 6205, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6205, - "%pct_boys": 0 - }, - { - "name": "April", - "state": "PA", - "gender": "girl", - "total": 6200, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6200, - "%pct_boys": 0 - }, - { - "name": "Stacy", - "state": "NY", - "gender": "girl", - "total": 6193, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6193, - "%pct_boys": 0 - }, - { - "name": "Christian", - "state": "MA", - "gender": "boy", - "total": 6187, - "SUM(sum_boys)": 6187, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Phillip", - "state": "IL", - "gender": "boy", - "total": 6181, - "SUM(sum_boys)": 6181, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Douglas", - "state": "NJ", - "gender": "boy", - "total": 6177, - "SUM(sum_boys)": 6177, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Raymond", - "state": "IL", - "gender": "boy", - "total": 6154, - "SUM(sum_boys)": 6154, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shane", - "state": "NY", - "gender": "boy", - "total": 6152, - "SUM(sum_boys)": 6152, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathaniel", - "state": "FL", - "gender": "boy", - "total": 6151, - "SUM(sum_boys)": 6151, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ian", - "state": "MI", - "gender": "boy", - "total": 6146, - "SUM(sum_boys)": 6146, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Grace", - "state": "TX", - "gender": "girl", - "total": 6138, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6138, - "%pct_boys": 0 - }, - { - "name": "Carlos", - "state": "NJ", - "gender": "boy", - "total": 6135, - "SUM(sum_boys)": 6135, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Denise", - "state": "NJ", - "gender": "girl", - "total": 6120, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6120, - "%pct_boys": 0 - }, - { - "name": "Connor", - "state": "IL", - "gender": "boy", - "total": 6119, - "SUM(sum_boys)": 6119, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gary", - "state": "FL", - "gender": "boy", - "total": 6118, - "SUM(sum_boys)": 6118, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alexandra", - "state": "OH", - "gender": "girl", - "total": 6106, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6106, - "%pct_boys": 0 - }, - { - "name": "Kelsey", - "state": "OH", - "gender": "girl", - "total": 6103, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6103, - "%pct_boys": 0 - }, - { - "name": "Stacey", - "state": "MI", - "gender": "girl", - "total": 6097, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6097, - "%pct_boys": 0 - }, - { - "name": "Luke", - "state": "NY", - "gender": "boy", - "total": 6089, - "SUM(sum_boys)": 6089, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Terry", - "state": "OH", - "gender": "boy", - "total": 6077, - "SUM(sum_boys)": 6077, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacy", - "state": "PA", - "gender": "girl", - "total": 6077, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6077, - "%pct_boys": 0 - }, - { - "name": "Isabella", - "state": "IL", - "gender": "girl", - "total": 6064, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6064, - "%pct_boys": 0 - }, - { - "name": "Michele", - "state": "OH", - "gender": "girl", - "total": 6059, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6059, - "%pct_boys": 0 - }, - { - "name": "Hunter", - "state": "OH", - "gender": "boy", - "total": 6059, - "SUM(sum_boys)": 6059, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erica", - "state": "NJ", - "gender": "girl", - "total": 6051, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6051, - "%pct_boys": 0 - }, - { - "name": "Kathryn", - "state": "MA", - "gender": "girl", - "total": 6048, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6048, - "%pct_boys": 0 - }, - { - "name": "Alicia", - "state": "PA", - "gender": "girl", - "total": 6041, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6041, - "%pct_boys": 0 - }, - { - "name": "Dennis", - "state": "IL", - "gender": "boy", - "total": 6025, - "SUM(sum_boys)": 6025, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shane", - "state": "MI", - "gender": "boy", - "total": 6023, - "SUM(sum_boys)": 6023, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jasmine", - "state": "MI", - "gender": "girl", - "total": 6018, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6018, - "%pct_boys": 0 - }, - { - "name": "Alexis", - "state": "TX", - "gender": "boy", - "total": 6005, - "SUM(sum_boys)": 6005, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jack", - "state": "MI", - "gender": "boy", - "total": 6001, - "SUM(sum_boys)": 6001, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donna", - "state": "CA", - "gender": "girl", - "total": 6000, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 6000, - "%pct_boys": 0 - }, - { - "name": "Bradley", - "state": "FL", - "gender": "boy", - "total": 5996, - "SUM(sum_boys)": 5996, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Destiny", - "state": "NY", - "gender": "girl", - "total": 5996, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5996, - "%pct_boys": 0 - }, - { - "name": "Cynthia", - "state": "MI", - "gender": "girl", - "total": 5978, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5978, - "%pct_boys": 0 - }, - { - "name": "Jenna", - "state": "MI", - "gender": "girl", - "total": 5974, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5974, - "%pct_boys": 0 - }, - { - "name": "Donna", - "state": "NJ", - "gender": "girl", - "total": 5973, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5973, - "%pct_boys": 0 - }, - { - "name": "Cassandra", - "state": "NY", - "gender": "girl", - "total": 5971, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5971, - "%pct_boys": 0 - }, - { - "name": "Dana", - "state": "CA", - "gender": "girl", - "total": 5961, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5961, - "%pct_boys": 0 - }, - { - "name": "Jenna", - "state": "IL", - "gender": "girl", - "total": 5961, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5961, - "%pct_boys": 0 - }, - { - "name": "Stacey", - "state": "OH", - "gender": "girl", - "total": 5954, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5954, - "%pct_boys": 0 - }, - { - "name": "Theresa", - "state": "IL", - "gender": "girl", - "total": 5951, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5951, - "%pct_boys": 0 - }, - { - "name": "Destiny", - "state": "FL", - "gender": "girl", - "total": 5939, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5939, - "%pct_boys": 0 - }, - { - "name": "Jeremy", - "state": "NJ", - "gender": "boy", - "total": 5939, - "SUM(sum_boys)": 5939, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathaniel", - "state": "MI", - "gender": "boy", - "total": 5930, - "SUM(sum_boys)": 5930, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cheryl", - "state": "CA", - "gender": "girl", - "total": 5928, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5928, - "%pct_boys": 0 - }, - { - "name": "Ian", - "state": "IL", - "gender": "boy", - "total": 5923, - "SUM(sum_boys)": 5923, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cynthia", - "state": "NJ", - "gender": "girl", - "total": 5922, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5922, - "%pct_boys": 0 - }, - { - "name": "Chad", - "state": "NY", - "gender": "boy", - "total": 5920, - "SUM(sum_boys)": 5920, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jesse", - "state": "IL", - "gender": "boy", - "total": 5909, - "SUM(sum_boys)": 5909, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Maria", - "state": "MA", - "gender": "girl", - "total": 5908, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5908, - "%pct_boys": 0 - }, - { - "name": "Larry", - "state": "IL", - "gender": "boy", - "total": 5904, - "SUM(sum_boys)": 5904, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Phillip", - "state": "OH", - "gender": "boy", - "total": 5900, - "SUM(sum_boys)": 5900, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gabriel", - "state": "IL", - "gender": "boy", - "total": 5896, - "SUM(sum_boys)": 5896, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "George", - "state": "MA", - "gender": "boy", - "total": 5868, - "SUM(sum_boys)": 5868, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alicia", - "state": "MI", - "gender": "girl", - "total": 5866, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5866, - "%pct_boys": 0 - }, - { - "name": "Luke", - "state": "MI", - "gender": "boy", - "total": 5860, - "SUM(sum_boys)": 5860, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jared", - "state": "FL", - "gender": "boy", - "total": 5856, - "SUM(sum_boys)": 5856, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cameron", - "state": "IL", - "gender": "boy", - "total": 5854, - "SUM(sum_boys)": 5854, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Marcus", - "state": "OH", - "gender": "boy", - "total": 5841, - "SUM(sum_boys)": 5841, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacqueline", - "state": "OH", - "gender": "girl", - "total": 5833, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5833, - "%pct_boys": 0 - }, - { - "name": "Vincent", - "state": "IL", - "gender": "boy", - "total": 5833, - "SUM(sum_boys)": 5833, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cameron", - "state": "MA", - "gender": "boy", - "total": 5815, - "SUM(sum_boys)": 5815, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Robin", - "state": "NY", - "gender": "girl", - "total": 5813, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5813, - "%pct_boys": 0 - }, - { - "name": "Lindsey", - "state": "CA", - "gender": "girl", - "total": 5811, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5811, - "%pct_boys": 0 - }, - { - "name": "Caleb", - "state": "IL", - "gender": "boy", - "total": 5807, - "SUM(sum_boys)": 5807, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chad", - "state": "FL", - "gender": "boy", - "total": 5793, - "SUM(sum_boys)": 5793, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alyssa", - "state": "MA", - "gender": "girl", - "total": 5792, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5792, - "%pct_boys": 0 - }, - { - "name": "Brenda", - "state": "PA", - "gender": "girl", - "total": 5790, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5790, - "%pct_boys": 0 - }, - { - "name": "Lucas", - "state": "NY", - "gender": "boy", - "total": 5788, - "SUM(sum_boys)": 5788, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Robin", - "state": "CA", - "gender": "girl", - "total": 5788, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5788, - "%pct_boys": 0 - }, - { - "name": "Kaitlyn", - "state": "IL", - "gender": "girl", - "total": 5777, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5777, - "%pct_boys": 0 - }, - { - "name": "Hunter", - "state": "MI", - "gender": "boy", - "total": 5771, - "SUM(sum_boys)": 5771, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Connor", - "state": "FL", - "gender": "boy", - "total": 5766, - "SUM(sum_boys)": 5766, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dustin", - "state": "IL", - "gender": "boy", - "total": 5763, - "SUM(sum_boys)": 5763, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Haley", - "state": "OH", - "gender": "girl", - "total": 5763, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5763, - "%pct_boys": 0 - }, - { - "name": "Rhonda", - "state": "TX", - "gender": "girl", - "total": 5762, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5762, - "%pct_boys": 0 - }, - { - "name": "Tracy", - "state": "FL", - "gender": "girl", - "total": 5759, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5759, - "%pct_boys": 0 - }, - { - "name": "Cameron", - "state": "PA", - "gender": "boy", - "total": 5753, - "SUM(sum_boys)": 5753, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Grace", - "state": "MI", - "gender": "girl", - "total": 5745, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5745, - "%pct_boys": 0 - }, - { - "name": "Alex", - "state": "PA", - "gender": "boy", - "total": 5738, - "SUM(sum_boys)": 5738, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Courtney", - "state": "MA", - "gender": "girl", - "total": 5736, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5736, - "%pct_boys": 0 - }, - { - "name": "Marcus", - "state": "MI", - "gender": "boy", - "total": 5731, - "SUM(sum_boys)": 5731, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Grace", - "state": "PA", - "gender": "girl", - "total": 5719, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5719, - "%pct_boys": 0 - }, - { - "name": "Jasmine", - "state": "OH", - "gender": "girl", - "total": 5708, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5708, - "%pct_boys": 0 - }, - { - "name": "Bryan", - "state": "MA", - "gender": "boy", - "total": 5664, - "SUM(sum_boys)": 5664, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Robin", - "state": "OH", - "gender": "girl", - "total": 5661, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5661, - "%pct_boys": 0 - }, - { - "name": "Debra", - "state": "CA", - "gender": "girl", - "total": 5653, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5653, - "%pct_boys": 0 - }, - { - "name": "Alex", - "state": "MI", - "gender": "boy", - "total": 5653, - "SUM(sum_boys)": 5653, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michele", - "state": "IL", - "gender": "girl", - "total": 5646, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5646, - "%pct_boys": 0 - }, - { - "name": "Evan", - "state": "MA", - "gender": "boy", - "total": 5620, - "SUM(sum_boys)": 5620, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "April", - "state": "IL", - "gender": "girl", - "total": 5619, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5619, - "%pct_boys": 0 - }, - { - "name": "Sandra", - "state": "PA", - "gender": "girl", - "total": 5616, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5616, - "%pct_boys": 0 - }, - { - "name": "Troy", - "state": "MI", - "gender": "boy", - "total": 5599, - "SUM(sum_boys)": 5599, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jeffery", - "state": "IL", - "gender": "boy", - "total": 5592, - "SUM(sum_boys)": 5592, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacqueline", - "state": "MA", - "gender": "girl", - "total": 5585, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5585, - "%pct_boys": 0 - }, - { - "name": "Connor", - "state": "MI", - "gender": "boy", - "total": 5575, - "SUM(sum_boys)": 5575, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Morgan", - "state": "CA", - "gender": "girl", - "total": 5574, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5574, - "%pct_boys": 0 - }, - { - "name": "Raymond", - "state": "MI", - "gender": "boy", - "total": 5556, - "SUM(sum_boys)": 5556, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melanie", - "state": "PA", - "gender": "girl", - "total": 5549, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5549, - "%pct_boys": 0 - }, - { - "name": "Taylor", - "state": "TX", - "gender": "boy", - "total": 5541, - "SUM(sum_boys)": 5541, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Troy", - "state": "PA", - "gender": "boy", - "total": 5539, - "SUM(sum_boys)": 5539, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katelyn", - "state": "TX", - "gender": "girl", - "total": 5535, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5535, - "%pct_boys": 0 - }, - { - "name": "Kristin", - "state": "MA", - "gender": "girl", - "total": 5534, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5534, - "%pct_boys": 0 - }, - { - "name": "Susan", - "state": "FL", - "gender": "girl", - "total": 5528, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5528, - "%pct_boys": 0 - }, - { - "name": "Frank", - "state": "TX", - "gender": "boy", - "total": 5524, - "SUM(sum_boys)": 5524, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jerry", - "state": "CA", - "gender": "boy", - "total": 5518, - "SUM(sum_boys)": 5518, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaiah", - "state": "FL", - "gender": "boy", - "total": 5517, - "SUM(sum_boys)": 5517, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Antonio", - "state": "MI", - "gender": "boy", - "total": 5516, - "SUM(sum_boys)": 5516, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacy", - "state": "MI", - "gender": "girl", - "total": 5506, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5506, - "%pct_boys": 0 - }, - { - "name": "Lucas", - "state": "CA", - "gender": "boy", - "total": 5505, - "SUM(sum_boys)": 5505, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Natalie", - "state": "NJ", - "gender": "girl", - "total": 5503, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5503, - "%pct_boys": 0 - }, - { - "name": "Tina", - "state": "FL", - "gender": "girl", - "total": 5501, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5501, - "%pct_boys": 0 - }, - { - "name": "Dylan", - "state": "MA", - "gender": "boy", - "total": 5501, - "SUM(sum_boys)": 5501, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Evan", - "state": "NJ", - "gender": "boy", - "total": 5498, - "SUM(sum_boys)": 5498, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Monica", - "state": "OH", - "gender": "girl", - "total": 5495, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5495, - "%pct_boys": 0 - }, - { - "name": "Hunter", - "state": "PA", - "gender": "boy", - "total": 5484, - "SUM(sum_boys)": 5484, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isabella", - "state": "PA", - "gender": "girl", - "total": 5472, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5472, - "%pct_boys": 0 - }, - { - "name": "Jared", - "state": "MI", - "gender": "boy", - "total": 5467, - "SUM(sum_boys)": 5467, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lindsey", - "state": "MI", - "gender": "girl", - "total": 5458, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5458, - "%pct_boys": 0 - }, - { - "name": "Taylor", - "state": "NJ", - "gender": "girl", - "total": 5452, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5452, - "%pct_boys": 0 - }, - { - "name": "Barbara", - "state": "CA", - "gender": "girl", - "total": 5450, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5450, - "%pct_boys": 0 - }, - { - "name": "Angel", - "state": "IL", - "gender": "boy", - "total": 5445, - "SUM(sum_boys)": 5445, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Peter", - "state": "OH", - "gender": "boy", - "total": 5440, - "SUM(sum_boys)": 5440, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mason", - "state": "OH", - "gender": "boy", - "total": 5440, - "SUM(sum_boys)": 5440, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sandra", - "state": "NJ", - "gender": "girl", - "total": 5438, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5438, - "%pct_boys": 0 - }, - { - "name": "Haley", - "state": "FL", - "gender": "girl", - "total": 5435, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5435, - "%pct_boys": 0 - }, - { - "name": "Angel", - "state": "NJ", - "gender": "boy", - "total": 5426, - "SUM(sum_boys)": 5426, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katie", - "state": "IL", - "gender": "girl", - "total": 5415, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5415, - "%pct_boys": 0 - }, - { - "name": "Diane", - "state": "PA", - "gender": "girl", - "total": 5403, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5403, - "%pct_boys": 0 - }, - { - "name": "Sandra", - "state": "MI", - "gender": "girl", - "total": 5402, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5402, - "%pct_boys": 0 - }, - { - "name": "Barbara", - "state": "OH", - "gender": "girl", - "total": 5399, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5399, - "%pct_boys": 0 - }, - { - "name": "Alexandra", - "state": "MI", - "gender": "girl", - "total": 5394, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5394, - "%pct_boys": 0 - }, - { - "name": "Pamela", - "state": "FL", - "gender": "girl", - "total": 5379, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5379, - "%pct_boys": 0 - }, - { - "name": "Jamie", - "state": "NJ", - "gender": "girl", - "total": 5375, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5375, - "%pct_boys": 0 - }, - { - "name": "Donald", - "state": "NJ", - "gender": "boy", - "total": 5371, - "SUM(sum_boys)": 5371, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Catherine", - "state": "MI", - "gender": "girl", - "total": 5364, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5364, - "%pct_boys": 0 - }, - { - "name": "Dustin", - "state": "FL", - "gender": "boy", - "total": 5359, - "SUM(sum_boys)": 5359, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lindsey", - "state": "FL", - "gender": "girl", - "total": 5358, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5358, - "%pct_boys": 0 - }, - { - "name": "Sandra", - "state": "OH", - "gender": "girl", - "total": 5352, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5352, - "%pct_boys": 0 - }, - { - "name": "Diana", - "state": "NJ", - "gender": "girl", - "total": 5334, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5334, - "%pct_boys": 0 - }, - { - "name": "Raymond", - "state": "FL", - "gender": "boy", - "total": 5332, - "SUM(sum_boys)": 5332, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Deborah", - "state": "TX", - "gender": "girl", - "total": 5327, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5327, - "%pct_boys": 0 - }, - { - "name": "Katelyn", - "state": "PA", - "gender": "girl", - "total": 5322, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5322, - "%pct_boys": 0 - }, - { - "name": "Sharon", - "state": "IL", - "gender": "girl", - "total": 5317, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5317, - "%pct_boys": 0 - }, - { - "name": "Stacy", - "state": "IL", - "gender": "girl", - "total": 5314, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5314, - "%pct_boys": 0 - }, - { - "name": "Joel", - "state": "MI", - "gender": "boy", - "total": 5302, - "SUM(sum_boys)": 5302, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelsey", - "state": "PA", - "gender": "girl", - "total": 5298, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5298, - "%pct_boys": 0 - }, - { - "name": "Gary", - "state": "NJ", - "gender": "boy", - "total": 5296, - "SUM(sum_boys)": 5296, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Connor", - "state": "TX", - "gender": "boy", - "total": 5282, - "SUM(sum_boys)": 5282, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelsey", - "state": "IL", - "gender": "girl", - "total": 5279, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5279, - "%pct_boys": 0 - }, - { - "name": "Chelsea", - "state": "PA", - "gender": "girl", - "total": 5278, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5278, - "%pct_boys": 0 - }, - { - "name": "Shane", - "state": "CA", - "gender": "boy", - "total": 5267, - "SUM(sum_boys)": 5267, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kaitlyn", - "state": "MI", - "gender": "girl", - "total": 5254, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5254, - "%pct_boys": 0 - }, - { - "name": "Lucas", - "state": "OH", - "gender": "boy", - "total": 5247, - "SUM(sum_boys)": 5247, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cheryl", - "state": "OH", - "gender": "girl", - "total": 5246, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5246, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "NJ", - "gender": "boy", - "total": 5246, - "SUM(sum_boys)": 5246, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Juan", - "state": "NJ", - "gender": "boy", - "total": 5244, - "SUM(sum_boys)": 5244, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Craig", - "state": "NJ", - "gender": "boy", - "total": 5242, - "SUM(sum_boys)": 5242, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sharon", - "state": "TX", - "gender": "girl", - "total": 5239, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5239, - "%pct_boys": 0 - }, - { - "name": "Madison", - "state": "NJ", - "gender": "girl", - "total": 5223, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5223, - "%pct_boys": 0 - }, - { - "name": "Katelyn", - "state": "OH", - "gender": "girl", - "total": 5217, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5217, - "%pct_boys": 0 - }, - { - "name": "Sandra", - "state": "FL", - "gender": "girl", - "total": 5211, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5211, - "%pct_boys": 0 - }, - { - "name": "Donna", - "state": "IL", - "gender": "girl", - "total": 5208, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5208, - "%pct_boys": 0 - }, - { - "name": "Jerry", - "state": "OH", - "gender": "boy", - "total": 5208, - "SUM(sum_boys)": 5208, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Theresa", - "state": "OH", - "gender": "girl", - "total": 5205, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5205, - "%pct_boys": 0 - }, - { - "name": "Vanessa", - "state": "NJ", - "gender": "girl", - "total": 5199, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5199, - "%pct_boys": 0 - }, - { - "name": "Larry", - "state": "MI", - "gender": "boy", - "total": 5185, - "SUM(sum_boys)": 5185, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rodney", - "state": "TX", - "gender": "boy", - "total": 5184, - "SUM(sum_boys)": 5184, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anna", - "state": "NJ", - "gender": "girl", - "total": 5161, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5161, - "%pct_boys": 0 - }, - { - "name": "Adrian", - "state": "IL", - "gender": "boy", - "total": 5160, - "SUM(sum_boys)": 5160, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michele", - "state": "MI", - "gender": "girl", - "total": 5157, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5157, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "FL", - "gender": "girl", - "total": 5154, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5154, - "%pct_boys": 0 - }, - { - "name": "Douglas", - "state": "FL", - "gender": "boy", - "total": 5153, - "SUM(sum_boys)": 5153, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isabella", - "state": "NJ", - "gender": "girl", - "total": 5144, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5144, - "%pct_boys": 0 - }, - { - "name": "Brooke", - "state": "IL", - "gender": "girl", - "total": 5137, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5137, - "%pct_boys": 0 - }, - { - "name": "Melanie", - "state": "NJ", - "gender": "girl", - "total": 5137, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5137, - "%pct_boys": 0 - }, - { - "name": "Cameron", - "state": "NY", - "gender": "boy", - "total": 5135, - "SUM(sum_boys)": 5135, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jose", - "state": "MA", - "gender": "boy", - "total": 5130, - "SUM(sum_boys)": 5130, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dustin", - "state": "PA", - "gender": "boy", - "total": 5129, - "SUM(sum_boys)": 5129, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristin", - "state": "NJ", - "gender": "girl", - "total": 5117, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5117, - "%pct_boys": 0 - }, - { - "name": "Troy", - "state": "OH", - "gender": "boy", - "total": 5115, - "SUM(sum_boys)": 5115, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristin", - "state": "TX", - "gender": "girl", - "total": 5111, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5111, - "%pct_boys": 0 - }, - { - "name": "Sydney", - "state": "IL", - "gender": "girl", - "total": 5104, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5104, - "%pct_boys": 0 - }, - { - "name": "Wendy", - "state": "IL", - "gender": "girl", - "total": 5099, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5099, - "%pct_boys": 0 - }, - { - "name": "Emma", - "state": "NJ", - "gender": "girl", - "total": 5099, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5099, - "%pct_boys": 0 - }, - { - "name": "Tara", - "state": "IL", - "gender": "girl", - "total": 5098, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5098, - "%pct_boys": 0 - }, - { - "name": "Caleb", - "state": "PA", - "gender": "boy", - "total": 5092, - "SUM(sum_boys)": 5092, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sharon", - "state": "NJ", - "gender": "girl", - "total": 5091, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5091, - "%pct_boys": 0 - }, - { - "name": "Dawn", - "state": "FL", - "gender": "girl", - "total": 5089, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5089, - "%pct_boys": 0 - }, - { - "name": "Tracy", - "state": "NJ", - "gender": "girl", - "total": 5072, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5072, - "%pct_boys": 0 - }, - { - "name": "Kelsey", - "state": "MI", - "gender": "girl", - "total": 5071, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5071, - "%pct_boys": 0 - }, - { - "name": "Anna", - "state": "MA", - "gender": "girl", - "total": 5063, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5063, - "%pct_boys": 0 - }, - { - "name": "Elijah", - "state": "OH", - "gender": "boy", - "total": 5059, - "SUM(sum_boys)": 5059, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alicia", - "state": "IL", - "gender": "girl", - "total": 5044, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5044, - "%pct_boys": 0 - }, - { - "name": "Cody", - "state": "NY", - "gender": "boy", - "total": 5040, - "SUM(sum_boys)": 5040, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Courtney", - "state": "NJ", - "gender": "girl", - "total": 5035, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5035, - "%pct_boys": 0 - }, - { - "name": "Brenda", - "state": "OH", - "gender": "girl", - "total": 5034, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5034, - "%pct_boys": 0 - }, - { - "name": "Margaret", - "state": "OH", - "gender": "girl", - "total": 5029, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5029, - "%pct_boys": 0 - }, - { - "name": "Teresa", - "state": "IL", - "gender": "girl", - "total": 5029, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5029, - "%pct_boys": 0 - }, - { - "name": "Jasmine", - "state": "PA", - "gender": "girl", - "total": 5027, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5027, - "%pct_boys": 0 - }, - { - "name": "Brittany", - "state": "MA", - "gender": "girl", - "total": 5019, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5019, - "%pct_boys": 0 - }, - { - "name": "George", - "state": "MI", - "gender": "boy", - "total": 5015, - "SUM(sum_boys)": 5015, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sydney", - "state": "FL", - "gender": "girl", - "total": 5013, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5013, - "%pct_boys": 0 - }, - { - "name": "April", - "state": "NY", - "gender": "girl", - "total": 5006, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5006, - "%pct_boys": 0 - }, - { - "name": "Jack", - "state": "MA", - "gender": "boy", - "total": 5004, - "SUM(sum_boys)": 5004, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sophia", - "state": "IL", - "gender": "girl", - "total": 5000, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 5000, - "%pct_boys": 0 - }, - { - "name": "Brooke", - "state": "NY", - "gender": "girl", - "total": 4993, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4993, - "%pct_boys": 0 - }, - { - "name": "Kaitlyn", - "state": "NJ", - "gender": "girl", - "total": 4992, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4992, - "%pct_boys": 0 - }, - { - "name": "Derek", - "state": "TX", - "gender": "boy", - "total": 4991, - "SUM(sum_boys)": 4991, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Derek", - "state": "FL", - "gender": "boy", - "total": 4989, - "SUM(sum_boys)": 4989, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cheryl", - "state": "IL", - "gender": "girl", - "total": 4987, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4987, - "%pct_boys": 0 - }, - { - "name": "Stacey", - "state": "IL", - "gender": "girl", - "total": 4986, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4986, - "%pct_boys": 0 - }, - { - "name": "Alicia", - "state": "OH", - "gender": "girl", - "total": 4977, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4977, - "%pct_boys": 0 - }, - { - "name": "Theresa", - "state": "MI", - "gender": "girl", - "total": 4953, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4953, - "%pct_boys": 0 - }, - { - "name": "Joel", - "state": "FL", - "gender": "boy", - "total": 4950, - "SUM(sum_boys)": 4950, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Deborah", - "state": "MI", - "gender": "girl", - "total": 4942, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4942, - "%pct_boys": 0 - }, - { - "name": "Lindsey", - "state": "PA", - "gender": "girl", - "total": 4938, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4938, - "%pct_boys": 0 - }, - { - "name": "Dustin", - "state": "MI", - "gender": "boy", - "total": 4930, - "SUM(sum_boys)": 4930, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sydney", - "state": "NY", - "gender": "girl", - "total": 4928, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4928, - "%pct_boys": 0 - }, - { - "name": "Mason", - "state": "CA", - "gender": "boy", - "total": 4926, - "SUM(sum_boys)": 4926, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Monica", - "state": "PA", - "gender": "girl", - "total": 4920, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4920, - "%pct_boys": 0 - }, - { - "name": "Leslie", - "state": "OH", - "gender": "girl", - "total": 4915, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4915, - "%pct_boys": 0 - }, - { - "name": "Rhonda", - "state": "OH", - "gender": "girl", - "total": 4913, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4913, - "%pct_boys": 0 - }, - { - "name": "Linda", - "state": "OH", - "gender": "girl", - "total": 4912, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4912, - "%pct_boys": 0 - }, - { - "name": "Robin", - "state": "PA", - "gender": "girl", - "total": 4911, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4911, - "%pct_boys": 0 - }, - { - "name": "Sharon", - "state": "CA", - "gender": "girl", - "total": 4901, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4901, - "%pct_boys": 0 - }, - { - "name": "Jared", - "state": "IL", - "gender": "boy", - "total": 4901, - "SUM(sum_boys)": 4901, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tara", - "state": "FL", - "gender": "girl", - "total": 4894, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4894, - "%pct_boys": 0 - }, - { - "name": "Tara", - "state": "TX", - "gender": "girl", - "total": 4888, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4888, - "%pct_boys": 0 - }, - { - "name": "Denise", - "state": "MI", - "gender": "girl", - "total": 4865, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4865, - "%pct_boys": 0 - }, - { - "name": "Joel", - "state": "IL", - "gender": "boy", - "total": 4859, - "SUM(sum_boys)": 4859, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melanie", - "state": "OH", - "gender": "girl", - "total": 4859, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4859, - "%pct_boys": 0 - }, - { - "name": "Jenna", - "state": "FL", - "gender": "girl", - "total": 4853, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4853, - "%pct_boys": 0 - }, - { - "name": "Sydney", - "state": "MI", - "gender": "girl", - "total": 4847, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4847, - "%pct_boys": 0 - }, - { - "name": "Margaret", - "state": "MA", - "gender": "girl", - "total": 4845, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4845, - "%pct_boys": 0 - }, - { - "name": "Shane", - "state": "FL", - "gender": "boy", - "total": 4840, - "SUM(sum_boys)": 4840, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Barbara", - "state": "IL", - "gender": "girl", - "total": 4833, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4833, - "%pct_boys": 0 - }, - { - "name": "Nancy", - "state": "NJ", - "gender": "girl", - "total": 4830, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4830, - "%pct_boys": 0 - }, - { - "name": "Craig", - "state": "MA", - "gender": "boy", - "total": 4824, - "SUM(sum_boys)": 4824, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jacqueline", - "state": "MI", - "gender": "girl", - "total": 4820, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4820, - "%pct_boys": 0 - }, - { - "name": "Cheryl", - "state": "MI", - "gender": "girl", - "total": 4816, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4816, - "%pct_boys": 0 - }, - { - "name": "Kathryn", - "state": "FL", - "gender": "girl", - "total": 4812, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4812, - "%pct_boys": 0 - }, - { - "name": "Lucas", - "state": "MI", - "gender": "boy", - "total": 4802, - "SUM(sum_boys)": 4802, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dana", - "state": "TX", - "gender": "girl", - "total": 4799, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4799, - "%pct_boys": 0 - }, - { - "name": "Jasmine", - "state": "NJ", - "gender": "girl", - "total": 4788, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4788, - "%pct_boys": 0 - }, - { - "name": "Jenna", - "state": "NJ", - "gender": "girl", - "total": 4787, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4787, - "%pct_boys": 0 - }, - { - "name": "Valerie", - "state": "IL", - "gender": "girl", - "total": 4784, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4784, - "%pct_boys": 0 - }, - { - "name": "Larry", - "state": "FL", - "gender": "boy", - "total": 4776, - "SUM(sum_boys)": 4776, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Linda", - "state": "NJ", - "gender": "girl", - "total": 4771, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4771, - "%pct_boys": 0 - }, - { - "name": "Todd", - "state": "MA", - "gender": "boy", - "total": 4767, - "SUM(sum_boys)": 4767, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Madison", - "state": "MA", - "gender": "girl", - "total": 4754, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4754, - "%pct_boys": 0 - }, - { - "name": "Monica", - "state": "MI", - "gender": "girl", - "total": 4749, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4749, - "%pct_boys": 0 - }, - { - "name": "Alex", - "state": "NJ", - "gender": "boy", - "total": 4747, - "SUM(sum_boys)": 4747, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Frank", - "state": "OH", - "gender": "boy", - "total": 4744, - "SUM(sum_boys)": 4744, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cassandra", - "state": "OH", - "gender": "girl", - "total": 4737, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4737, - "%pct_boys": 0 - }, - { - "name": "Ian", - "state": "NJ", - "gender": "boy", - "total": 4729, - "SUM(sum_boys)": 4729, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Robin", - "state": "TX", - "gender": "girl", - "total": 4707, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4707, - "%pct_boys": 0 - }, - { - "name": "Jack", - "state": "NJ", - "gender": "boy", - "total": 4700, - "SUM(sum_boys)": 4700, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Marcus", - "state": "NY", - "gender": "boy", - "total": 4687, - "SUM(sum_boys)": 4687, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Ethan", - "state": "MA", - "gender": "boy", - "total": 4685, - "SUM(sum_boys)": 4685, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathryn", - "state": "NJ", - "gender": "girl", - "total": 4681, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4681, - "%pct_boys": 0 - }, - { - "name": "Isabella", - "state": "OH", - "gender": "girl", - "total": 4678, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4678, - "%pct_boys": 0 - }, - { - "name": "Debra", - "state": "TX", - "gender": "girl", - "total": 4675, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4675, - "%pct_boys": 0 - }, - { - "name": "Connor", - "state": "MA", - "gender": "boy", - "total": 4672, - "SUM(sum_boys)": 4672, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Haley", - "state": "IL", - "gender": "girl", - "total": 4647, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4647, - "%pct_boys": 0 - }, - { - "name": "Carrie", - "state": "PA", - "gender": "girl", - "total": 4646, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4646, - "%pct_boys": 0 - }, - { - "name": "Terry", - "state": "TX", - "gender": "boy", - "total": 4625, - "SUM(sum_boys)": 4625, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "CA", - "gender": "boy", - "total": 4625, - "SUM(sum_boys)": 4625, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Randy", - "state": "OH", - "gender": "boy", - "total": 4624, - "SUM(sum_boys)": 4624, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brianna", - "state": "MA", - "gender": "girl", - "total": 4611, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4611, - "%pct_boys": 0 - }, - { - "name": "Lori", - "state": "NJ", - "gender": "girl", - "total": 4611, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4611, - "%pct_boys": 0 - }, - { - "name": "Dawn", - "state": "MA", - "gender": "girl", - "total": 4610, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4610, - "%pct_boys": 0 - }, - { - "name": "Hannah", - "state": "NJ", - "gender": "girl", - "total": 4607, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4607, - "%pct_boys": 0 - }, - { - "name": "Cheryl", - "state": "PA", - "gender": "girl", - "total": 4606, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4606, - "%pct_boys": 0 - }, - { - "name": "Brenda", - "state": "MI", - "gender": "girl", - "total": 4603, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4603, - "%pct_boys": 0 - }, - { - "name": "Dennis", - "state": "NJ", - "gender": "boy", - "total": 4602, - "SUM(sum_boys)": 4602, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jared", - "state": "MA", - "gender": "boy", - "total": 4598, - "SUM(sum_boys)": 4598, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Debra", - "state": "IL", - "gender": "girl", - "total": 4595, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4595, - "%pct_boys": 0 - }, - { - "name": "Barbara", - "state": "FL", - "gender": "girl", - "total": 4588, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4588, - "%pct_boys": 0 - }, - { - "name": "Dana", - "state": "MI", - "gender": "girl", - "total": 4587, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4587, - "%pct_boys": 0 - }, - { - "name": "Tara", - "state": "MI", - "gender": "girl", - "total": 4582, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4582, - "%pct_boys": 0 - }, - { - "name": "Angel", - "state": "FL", - "gender": "boy", - "total": 4581, - "SUM(sum_boys)": 4581, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lindsey", - "state": "IL", - "gender": "girl", - "total": 4574, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4574, - "%pct_boys": 0 - }, - { - "name": "Frank", - "state": "FL", - "gender": "boy", - "total": 4569, - "SUM(sum_boys)": 4569, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Bradley", - "state": "CA", - "gender": "boy", - "total": 4564, - "SUM(sum_boys)": 4564, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nancy", - "state": "PA", - "gender": "girl", - "total": 4562, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4562, - "%pct_boys": 0 - }, - { - "name": "Tracy", - "state": "MA", - "gender": "girl", - "total": 4561, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4561, - "%pct_boys": 0 - }, - { - "name": "Katie", - "state": "NY", - "gender": "girl", - "total": 4557, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4557, - "%pct_boys": 0 - }, - { - "name": "Logan", - "state": "NY", - "gender": "boy", - "total": 4557, - "SUM(sum_boys)": 4557, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diane", - "state": "CA", - "gender": "girl", - "total": 4556, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4556, - "%pct_boys": 0 - }, - { - "name": "Julia", - "state": "MI", - "gender": "girl", - "total": 4549, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4549, - "%pct_boys": 0 - }, - { - "name": "Deborah", - "state": "MA", - "gender": "girl", - "total": 4548, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4548, - "%pct_boys": 0 - }, - { - "name": "Donna", - "state": "OH", - "gender": "girl", - "total": 4548, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4548, - "%pct_boys": 0 - }, - { - "name": "Katelyn", - "state": "MI", - "gender": "girl", - "total": 4544, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4544, - "%pct_boys": 0 - }, - { - "name": "Teresa", - "state": "FL", - "gender": "girl", - "total": 4540, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4540, - "%pct_boys": 0 - }, - { - "name": "Ian", - "state": "MA", - "gender": "boy", - "total": 4521, - "SUM(sum_boys)": 4521, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carrie", - "state": "TX", - "gender": "girl", - "total": 4518, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4518, - "%pct_boys": 0 - }, - { - "name": "Haley", - "state": "PA", - "gender": "girl", - "total": 4504, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4504, - "%pct_boys": 0 - }, - { - "name": "Jeffery", - "state": "TX", - "gender": "boy", - "total": 4502, - "SUM(sum_boys)": 4502, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gabriel", - "state": "OH", - "gender": "boy", - "total": 4497, - "SUM(sum_boys)": 4497, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erica", - "state": "MA", - "gender": "girl", - "total": 4491, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4491, - "%pct_boys": 0 - }, - { - "name": "Sophia", - "state": "OH", - "gender": "girl", - "total": 4488, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4488, - "%pct_boys": 0 - }, - { - "name": "Rodney", - "state": "OH", - "gender": "boy", - "total": 4475, - "SUM(sum_boys)": 4475, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Troy", - "state": "CA", - "gender": "boy", - "total": 4475, - "SUM(sum_boys)": 4475, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Douglas", - "state": "MA", - "gender": "boy", - "total": 4469, - "SUM(sum_boys)": 4469, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kristin", - "state": "FL", - "gender": "girl", - "total": 4467, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4467, - "%pct_boys": 0 - }, - { - "name": "Carrie", - "state": "NY", - "gender": "girl", - "total": 4459, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4459, - "%pct_boys": 0 - }, - { - "name": "Sydney", - "state": "PA", - "gender": "girl", - "total": 4454, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4454, - "%pct_boys": 0 - }, - { - "name": "Randy", - "state": "MI", - "gender": "boy", - "total": 4450, - "SUM(sum_boys)": 4450, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victor", - "state": "FL", - "gender": "boy", - "total": 4438, - "SUM(sum_boys)": 4438, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sharon", - "state": "OH", - "gender": "girl", - "total": 4435, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4435, - "%pct_boys": 0 - }, - { - "name": "Taylor", - "state": "MA", - "gender": "girl", - "total": 4428, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4428, - "%pct_boys": 0 - }, - { - "name": "Deborah", - "state": "NJ", - "gender": "girl", - "total": 4428, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4428, - "%pct_boys": 0 - }, - { - "name": "Julie", - "state": "NJ", - "gender": "girl", - "total": 4425, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4425, - "%pct_boys": 0 - }, - { - "name": "Barbara", - "state": "NJ", - "gender": "girl", - "total": 4406, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4406, - "%pct_boys": 0 - }, - { - "name": "Phillip", - "state": "MI", - "gender": "boy", - "total": 4388, - "SUM(sum_boys)": 4388, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Pamela", - "state": "MA", - "gender": "girl", - "total": 4373, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4373, - "%pct_boys": 0 - }, - { - "name": "Abigail", - "state": "NJ", - "gender": "girl", - "total": 4367, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4367, - "%pct_boys": 0 - }, - { - "name": "Debra", - "state": "PA", - "gender": "girl", - "total": 4367, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4367, - "%pct_boys": 0 - }, - { - "name": "Peter", - "state": "FL", - "gender": "boy", - "total": 4366, - "SUM(sum_boys)": 4366, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donald", - "state": "MA", - "gender": "boy", - "total": 4365, - "SUM(sum_boys)": 4365, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gabriel", - "state": "NJ", - "gender": "boy", - "total": 4364, - "SUM(sum_boys)": 4364, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joel", - "state": "PA", - "gender": "boy", - "total": 4359, - "SUM(sum_boys)": 4359, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Corey", - "state": "TX", - "gender": "boy", - "total": 4351, - "SUM(sum_boys)": 4351, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Linda", - "state": "MI", - "gender": "girl", - "total": 4347, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4347, - "%pct_boys": 0 - }, - { - "name": "Brenda", - "state": "IL", - "gender": "girl", - "total": 4346, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4346, - "%pct_boys": 0 - }, - { - "name": "Jack", - "state": "PA", - "gender": "boy", - "total": 4343, - "SUM(sum_boys)": 4343, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jordan", - "state": "OH", - "gender": "girl", - "total": 4334, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4334, - "%pct_boys": 0 - }, - { - "name": "Valerie", - "state": "PA", - "gender": "girl", - "total": 4334, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4334, - "%pct_boys": 0 - }, - { - "name": "Theresa", - "state": "NJ", - "gender": "girl", - "total": 4327, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4327, - "%pct_boys": 0 - }, - { - "name": "Victor", - "state": "NJ", - "gender": "boy", - "total": 4327, - "SUM(sum_boys)": 4327, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Gabriel", - "state": "MI", - "gender": "boy", - "total": 4323, - "SUM(sum_boys)": 4323, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sophia", - "state": "PA", - "gender": "girl", - "total": 4306, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4306, - "%pct_boys": 0 - }, - { - "name": "Connor", - "state": "NJ", - "gender": "boy", - "total": 4303, - "SUM(sum_boys)": 4303, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Teresa", - "state": "MI", - "gender": "girl", - "total": 4280, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4280, - "%pct_boys": 0 - }, - { - "name": "Grace", - "state": "FL", - "gender": "girl", - "total": 4271, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4271, - "%pct_boys": 0 - }, - { - "name": "Jeffery", - "state": "CA", - "gender": "boy", - "total": 4243, - "SUM(sum_boys)": 4243, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacey", - "state": "TX", - "gender": "girl", - "total": 4243, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4243, - "%pct_boys": 0 - }, - { - "name": "Terry", - "state": "IL", - "gender": "boy", - "total": 4239, - "SUM(sum_boys)": 4239, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Holly", - "state": "CA", - "gender": "girl", - "total": 4235, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4235, - "%pct_boys": 0 - }, - { - "name": "Cheryl", - "state": "NJ", - "gender": "girl", - "total": 4235, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4235, - "%pct_boys": 0 - }, - { - "name": "Cheryl", - "state": "MA", - "gender": "girl", - "total": 4232, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4232, - "%pct_boys": 0 - }, - { - "name": "Ronald", - "state": "MA", - "gender": "boy", - "total": 4230, - "SUM(sum_boys)": 4230, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carol", - "state": "NY", - "gender": "girl", - "total": 4227, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4227, - "%pct_boys": 0 - }, - { - "name": "Randy", - "state": "PA", - "gender": "boy", - "total": 4222, - "SUM(sum_boys)": 4222, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jack", - "state": "FL", - "gender": "boy", - "total": 4200, - "SUM(sum_boys)": 4200, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaiah", - "state": "OH", - "gender": "boy", - "total": 4188, - "SUM(sum_boys)": 4188, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katelyn", - "state": "CA", - "gender": "girl", - "total": 4185, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4185, - "%pct_boys": 0 - }, - { - "name": "Dawn", - "state": "TX", - "gender": "girl", - "total": 4182, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4182, - "%pct_boys": 0 - }, - { - "name": "Nathaniel", - "state": "MA", - "gender": "boy", - "total": 4169, - "SUM(sum_boys)": 4169, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Todd", - "state": "NJ", - "gender": "boy", - "total": 4166, - "SUM(sum_boys)": 4166, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Russell", - "state": "TX", - "gender": "boy", - "total": 4166, - "SUM(sum_boys)": 4166, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melanie", - "state": "IL", - "gender": "girl", - "total": 4152, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4152, - "%pct_boys": 0 - }, - { - "name": "Pamela", - "state": "NJ", - "gender": "girl", - "total": 4146, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4146, - "%pct_boys": 0 - }, - { - "name": "Isaac", - "state": "NY", - "gender": "boy", - "total": 4145, - "SUM(sum_boys)": 4145, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lori", - "state": "MA", - "gender": "girl", - "total": 4141, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4141, - "%pct_boys": 0 - }, - { - "name": "Isabella", - "state": "MI", - "gender": "girl", - "total": 4141, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4141, - "%pct_boys": 0 - }, - { - "name": "Wendy", - "state": "FL", - "gender": "girl", - "total": 4133, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4133, - "%pct_boys": 0 - }, - { - "name": "Terry", - "state": "MI", - "gender": "boy", - "total": 4130, - "SUM(sum_boys)": 4130, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sophia", - "state": "NJ", - "gender": "girl", - "total": 4130, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4130, - "%pct_boys": 0 - }, - { - "name": "Phillip", - "state": "FL", - "gender": "boy", - "total": 4120, - "SUM(sum_boys)": 4120, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isabella", - "state": "MA", - "gender": "girl", - "total": 4109, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4109, - "%pct_boys": 0 - }, - { - "name": "Jerry", - "state": "IL", - "gender": "boy", - "total": 4101, - "SUM(sum_boys)": 4101, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jill", - "state": "NJ", - "gender": "girl", - "total": 4087, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4087, - "%pct_boys": 0 - }, - { - "name": "Katie", - "state": "TX", - "gender": "girl", - "total": 4070, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4070, - "%pct_boys": 0 - }, - { - "name": "Margaret", - "state": "NJ", - "gender": "girl", - "total": 4067, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4067, - "%pct_boys": 0 - }, - { - "name": "Grace", - "state": "MA", - "gender": "girl", - "total": 4065, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4065, - "%pct_boys": 0 - }, - { - "name": "Rhonda", - "state": "CA", - "gender": "girl", - "total": 4064, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4064, - "%pct_boys": 0 - }, - { - "name": "Teresa", - "state": "NY", - "gender": "girl", - "total": 4064, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4064, - "%pct_boys": 0 - }, - { - "name": "Elijah", - "state": "PA", - "gender": "boy", - "total": 4063, - "SUM(sum_boys)": 4063, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mason", - "state": "PA", - "gender": "boy", - "total": 4061, - "SUM(sum_boys)": 4061, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cassandra", - "state": "PA", - "gender": "girl", - "total": 4060, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4060, - "%pct_boys": 0 - }, - { - "name": "Sophia", - "state": "MA", - "gender": "girl", - "total": 4040, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4040, - "%pct_boys": 0 - }, - { - "name": "Haley", - "state": "MI", - "gender": "girl", - "total": 4036, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4036, - "%pct_boys": 0 - }, - { - "name": "Cassandra", - "state": "IL", - "gender": "girl", - "total": 4027, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4027, - "%pct_boys": 0 - }, - { - "name": "Marcus", - "state": "CA", - "gender": "boy", - "total": 4023, - "SUM(sum_boys)": 4023, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Barbara", - "state": "MI", - "gender": "girl", - "total": 4018, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4018, - "%pct_boys": 0 - }, - { - "name": "Antonio", - "state": "NJ", - "gender": "boy", - "total": 4012, - "SUM(sum_boys)": 4012, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nancy", - "state": "MA", - "gender": "girl", - "total": 4007, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 4007, - "%pct_boys": 0 - }, - { - "name": "Katelyn", - "state": "IL", - "gender": "girl", - "total": 3998, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3998, - "%pct_boys": 0 - }, - { - "name": "Ethan", - "state": "NJ", - "gender": "boy", - "total": 3994, - "SUM(sum_boys)": 3994, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shane", - "state": "MA", - "gender": "boy", - "total": 3991, - "SUM(sum_boys)": 3991, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Destiny", - "state": "IL", - "gender": "girl", - "total": 3979, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3979, - "%pct_boys": 0 - }, - { - "name": "Larry", - "state": "PA", - "gender": "boy", - "total": 3959, - "SUM(sum_boys)": 3959, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Monica", - "state": "NJ", - "gender": "girl", - "total": 3941, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3941, - "%pct_boys": 0 - }, - { - "name": "Jared", - "state": "NJ", - "gender": "boy", - "total": 3938, - "SUM(sum_boys)": 3938, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lori", - "state": "FL", - "gender": "girl", - "total": 3935, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3935, - "%pct_boys": 0 - }, - { - "name": "Alex", - "state": "MA", - "gender": "boy", - "total": 3925, - "SUM(sum_boys)": 3925, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Grace", - "state": "NJ", - "gender": "girl", - "total": 3921, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3921, - "%pct_boys": 0 - }, - { - "name": "Evan", - "state": "TX", - "gender": "boy", - "total": 3911, - "SUM(sum_boys)": 3911, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Katie", - "state": "FL", - "gender": "girl", - "total": 3910, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3910, - "%pct_boys": 0 - }, - { - "name": "Destiny", - "state": "OH", - "gender": "girl", - "total": 3908, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3908, - "%pct_boys": 0 - }, - { - "name": "Sharon", - "state": "FL", - "gender": "girl", - "total": 3898, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3898, - "%pct_boys": 0 - }, - { - "name": "Savannah", - "state": "OH", - "gender": "girl", - "total": 3895, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3895, - "%pct_boys": 0 - }, - { - "name": "Linda", - "state": "FL", - "gender": "girl", - "total": 3886, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3886, - "%pct_boys": 0 - }, - { - "name": "Linda", - "state": "MA", - "gender": "girl", - "total": 3873, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3873, - "%pct_boys": 0 - }, - { - "name": "Katelyn", - "state": "FL", - "gender": "girl", - "total": 3871, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3871, - "%pct_boys": 0 - }, - { - "name": "Tara", - "state": "MA", - "gender": "girl", - "total": 3860, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3860, - "%pct_boys": 0 - }, - { - "name": "Holly", - "state": "IL", - "gender": "girl", - "total": 3848, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3848, - "%pct_boys": 0 - }, - { - "name": "Dana", - "state": "FL", - "gender": "girl", - "total": 3844, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3844, - "%pct_boys": 0 - }, - { - "name": "Luke", - "state": "MA", - "gender": "boy", - "total": 3839, - "SUM(sum_boys)": 3839, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elijah", - "state": "IL", - "gender": "boy", - "total": 3832, - "SUM(sum_boys)": 3832, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Leslie", - "state": "PA", - "gender": "girl", - "total": 3832, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3832, - "%pct_boys": 0 - }, - { - "name": "Luis", - "state": "MA", - "gender": "boy", - "total": 3820, - "SUM(sum_boys)": 3820, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lucas", - "state": "PA", - "gender": "boy", - "total": 3819, - "SUM(sum_boys)": 3819, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jordan", - "state": "MA", - "gender": "boy", - "total": 3803, - "SUM(sum_boys)": 3803, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Douglas", - "state": "TX", - "gender": "boy", - "total": 3795, - "SUM(sum_boys)": 3795, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Crystal", - "state": "NJ", - "gender": "girl", - "total": 3792, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3792, - "%pct_boys": 0 - }, - { - "name": "Luke", - "state": "FL", - "gender": "boy", - "total": 3788, - "SUM(sum_boys)": 3788, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaiah", - "state": "PA", - "gender": "boy", - "total": 3787, - "SUM(sum_boys)": 3787, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Russell", - "state": "OH", - "gender": "boy", - "total": 3777, - "SUM(sum_boys)": 3777, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sandra", - "state": "MA", - "gender": "girl", - "total": 3773, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3773, - "%pct_boys": 0 - }, - { - "name": "Tony", - "state": "CA", - "gender": "boy", - "total": 3765, - "SUM(sum_boys)": 3765, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Troy", - "state": "IL", - "gender": "boy", - "total": 3762, - "SUM(sum_boys)": 3762, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaiah", - "state": "IL", - "gender": "boy", - "total": 3762, - "SUM(sum_boys)": 3762, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Corey", - "state": "MA", - "gender": "boy", - "total": 3751, - "SUM(sum_boys)": 3751, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cheryl", - "state": "TX", - "gender": "girl", - "total": 3739, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3739, - "%pct_boys": 0 - }, - { - "name": "Barbara", - "state": "TX", - "gender": "girl", - "total": 3737, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3737, - "%pct_boys": 0 - }, - { - "name": "Jesse", - "state": "NJ", - "gender": "boy", - "total": 3734, - "SUM(sum_boys)": 3734, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sophia", - "state": "MI", - "gender": "girl", - "total": 3724, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3724, - "%pct_boys": 0 - }, - { - "name": "Janet", - "state": "NY", - "gender": "girl", - "total": 3722, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3722, - "%pct_boys": 0 - }, - { - "name": "Robin", - "state": "IL", - "gender": "girl", - "total": 3720, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3720, - "%pct_boys": 0 - }, - { - "name": "Gary", - "state": "MA", - "gender": "boy", - "total": 3720, - "SUM(sum_boys)": 3720, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jesse", - "state": "MA", - "gender": "boy", - "total": 3716, - "SUM(sum_boys)": 3716, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jill", - "state": "MA", - "gender": "girl", - "total": 3709, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3709, - "%pct_boys": 0 - }, - { - "name": "Hunter", - "state": "NY", - "gender": "boy", - "total": 3704, - "SUM(sum_boys)": 3704, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donna", - "state": "MA", - "gender": "girl", - "total": 3697, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3697, - "%pct_boys": 0 - }, - { - "name": "Cindy", - "state": "TX", - "gender": "girl", - "total": 3683, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3683, - "%pct_boys": 0 - }, - { - "name": "Vincent", - "state": "OH", - "gender": "boy", - "total": 3681, - "SUM(sum_boys)": 3681, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dennis", - "state": "MA", - "gender": "boy", - "total": 3678, - "SUM(sum_boys)": 3678, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donna", - "state": "FL", - "gender": "girl", - "total": 3670, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3670, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "MI", - "gender": "girl", - "total": 3668, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3668, - "%pct_boys": 0 - }, - { - "name": "Gabriel", - "state": "PA", - "gender": "boy", - "total": 3664, - "SUM(sum_boys)": 3664, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Leslie", - "state": "FL", - "gender": "girl", - "total": 3655, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3655, - "%pct_boys": 0 - }, - { - "name": "Lucas", - "state": "FL", - "gender": "boy", - "total": 3655, - "SUM(sum_boys)": 3655, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diana", - "state": "FL", - "gender": "girl", - "total": 3652, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3652, - "%pct_boys": 0 - }, - { - "name": "Katelyn", - "state": "MA", - "gender": "girl", - "total": 3645, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3645, - "%pct_boys": 0 - }, - { - "name": "Morgan", - "state": "NJ", - "gender": "girl", - "total": 3639, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3639, - "%pct_boys": 0 - }, - { - "name": "Robin", - "state": "MI", - "gender": "girl", - "total": 3637, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3637, - "%pct_boys": 0 - }, - { - "name": "Shane", - "state": "IL", - "gender": "boy", - "total": 3635, - "SUM(sum_boys)": 3635, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cassandra", - "state": "FL", - "gender": "girl", - "total": 3619, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3619, - "%pct_boys": 0 - }, - { - "name": "Joel", - "state": "OH", - "gender": "boy", - "total": 3599, - "SUM(sum_boys)": 3599, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jenna", - "state": "MA", - "gender": "girl", - "total": 3586, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3586, - "%pct_boys": 0 - }, - { - "name": "Alexis", - "state": "MA", - "gender": "girl", - "total": 3581, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3581, - "%pct_boys": 0 - }, - { - "name": "Craig", - "state": "FL", - "gender": "boy", - "total": 3559, - "SUM(sum_boys)": 3559, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Luke", - "state": "NJ", - "gender": "boy", - "total": 3559, - "SUM(sum_boys)": 3559, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sherry", - "state": "OH", - "gender": "girl", - "total": 3552, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3552, - "%pct_boys": 0 - }, - { - "name": "Carol", - "state": "PA", - "gender": "girl", - "total": 3548, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3548, - "%pct_boys": 0 - }, - { - "name": "Katelyn", - "state": "NY", - "gender": "girl", - "total": 3538, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3538, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "PA", - "gender": "girl", - "total": 3534, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3534, - "%pct_boys": 0 - }, - { - "name": "Debra", - "state": "OH", - "gender": "girl", - "total": 3530, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3530, - "%pct_boys": 0 - }, - { - "name": "Valerie", - "state": "OH", - "gender": "girl", - "total": 3521, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3521, - "%pct_boys": 0 - }, - { - "name": "Paula", - "state": "TX", - "gender": "girl", - "total": 3520, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3520, - "%pct_boys": 0 - }, - { - "name": "Deborah", - "state": "FL", - "gender": "girl", - "total": 3517, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3517, - "%pct_boys": 0 - }, - { - "name": "Cynthia", - "state": "MA", - "gender": "girl", - "total": 3517, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3517, - "%pct_boys": 0 - }, - { - "name": "Kelsey", - "state": "NY", - "gender": "girl", - "total": 3516, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3516, - "%pct_boys": 0 - }, - { - "name": "Sherry", - "state": "PA", - "gender": "girl", - "total": 3505, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3505, - "%pct_boys": 0 - }, - { - "name": "Troy", - "state": "TX", - "gender": "boy", - "total": 3502, - "SUM(sum_boys)": 3502, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Russell", - "state": "PA", - "gender": "boy", - "total": 3484, - "SUM(sum_boys)": 3484, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Frank", - "state": "MI", - "gender": "boy", - "total": 3484, - "SUM(sum_boys)": 3484, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Todd", - "state": "FL", - "gender": "boy", - "total": 3478, - "SUM(sum_boys)": 3478, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cindy", - "state": "NY", - "gender": "girl", - "total": 3475, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3475, - "%pct_boys": 0 - }, - { - "name": "Terry", - "state": "FL", - "gender": "boy", - "total": 3468, - "SUM(sum_boys)": 3468, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kelsey", - "state": "FL", - "gender": "girl", - "total": 3467, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3467, - "%pct_boys": 0 - }, - { - "name": "Holly", - "state": "FL", - "gender": "girl", - "total": 3464, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3464, - "%pct_boys": 0 - }, - { - "name": "Stacey", - "state": "NJ", - "gender": "girl", - "total": 3461, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3461, - "%pct_boys": 0 - }, - { - "name": "Derek", - "state": "NJ", - "gender": "boy", - "total": 3457, - "SUM(sum_boys)": 3457, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diane", - "state": "IL", - "gender": "girl", - "total": 3456, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3456, - "%pct_boys": 0 - }, - { - "name": "Jeffery", - "state": "FL", - "gender": "boy", - "total": 3449, - "SUM(sum_boys)": 3449, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Wendy", - "state": "MA", - "gender": "girl", - "total": 3444, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3444, - "%pct_boys": 0 - }, - { - "name": "Alicia", - "state": "MA", - "gender": "girl", - "total": 3444, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3444, - "%pct_boys": 0 - }, - { - "name": "Rodney", - "state": "MI", - "gender": "boy", - "total": 3437, - "SUM(sum_boys)": 3437, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacy", - "state": "FL", - "gender": "girl", - "total": 3425, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3425, - "%pct_boys": 0 - }, - { - "name": "Raymond", - "state": "MA", - "gender": "boy", - "total": 3417, - "SUM(sum_boys)": 3417, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Donna", - "state": "MI", - "gender": "girl", - "total": 3414, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3414, - "%pct_boys": 0 - }, - { - "name": "Debra", - "state": "MI", - "gender": "girl", - "total": 3413, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3413, - "%pct_boys": 0 - }, - { - "name": "Alicia", - "state": "NJ", - "gender": "girl", - "total": 3412, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3412, - "%pct_boys": 0 - }, - { - "name": "Craig", - "state": "TX", - "gender": "boy", - "total": 3396, - "SUM(sum_boys)": 3396, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carol", - "state": "CA", - "gender": "girl", - "total": 3390, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3390, - "%pct_boys": 0 - }, - { - "name": "Tina", - "state": "NJ", - "gender": "girl", - "total": 3387, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3387, - "%pct_boys": 0 - }, - { - "name": "Isaac", - "state": "IL", - "gender": "boy", - "total": 3384, - "SUM(sum_boys)": 3384, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paula", - "state": "CA", - "gender": "girl", - "total": 3383, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3383, - "%pct_boys": 0 - }, - { - "name": "Tammy", - "state": "MA", - "gender": "girl", - "total": 3372, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3372, - "%pct_boys": 0 - }, - { - "name": "Russell", - "state": "NY", - "gender": "boy", - "total": 3367, - "SUM(sum_boys)": 3367, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Todd", - "state": "TX", - "gender": "boy", - "total": 3367, - "SUM(sum_boys)": 3367, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Amber", - "state": "NJ", - "gender": "girl", - "total": 3361, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3361, - "%pct_boys": 0 - }, - { - "name": "Stacey", - "state": "FL", - "gender": "girl", - "total": 3352, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3352, - "%pct_boys": 0 - }, - { - "name": "Noah", - "state": "MA", - "gender": "boy", - "total": 3347, - "SUM(sum_boys)": 3347, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jerry", - "state": "FL", - "gender": "boy", - "total": 3344, - "SUM(sum_boys)": 3344, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paula", - "state": "OH", - "gender": "girl", - "total": 3338, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3338, - "%pct_boys": 0 - }, - { - "name": "Isaac", - "state": "OH", - "gender": "boy", - "total": 3336, - "SUM(sum_boys)": 3336, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rodney", - "state": "IL", - "gender": "boy", - "total": 3329, - "SUM(sum_boys)": 3329, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rodney", - "state": "CA", - "gender": "boy", - "total": 3326, - "SUM(sum_boys)": 3326, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elijah", - "state": "MI", - "gender": "boy", - "total": 3322, - "SUM(sum_boys)": 3322, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Caleb", - "state": "NY", - "gender": "boy", - "total": 3321, - "SUM(sum_boys)": 3321, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nancy", - "state": "OH", - "gender": "girl", - "total": 3317, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3317, - "%pct_boys": 0 - }, - { - "name": "Tony", - "state": "IL", - "gender": "boy", - "total": 3313, - "SUM(sum_boys)": 3313, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kaitlyn", - "state": "MA", - "gender": "girl", - "total": 3306, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3306, - "%pct_boys": 0 - }, - { - "name": "Leslie", - "state": "MI", - "gender": "girl", - "total": 3302, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3302, - "%pct_boys": 0 - }, - { - "name": "Rhonda", - "state": "IL", - "gender": "girl", - "total": 3295, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3295, - "%pct_boys": 0 - }, - { - "name": "Tony", - "state": "TX", - "gender": "boy", - "total": 3292, - "SUM(sum_boys)": 3292, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Denise", - "state": "MA", - "gender": "girl", - "total": 3285, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3285, - "%pct_boys": 0 - }, - { - "name": "Bradley", - "state": "NY", - "gender": "boy", - "total": 3284, - "SUM(sum_boys)": 3284, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diane", - "state": "NJ", - "gender": "girl", - "total": 3279, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3279, - "%pct_boys": 0 - }, - { - "name": "Kim", - "state": "CA", - "gender": "girl", - "total": 3277, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3277, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "IL", - "gender": "girl", - "total": 3268, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3268, - "%pct_boys": 0 - }, - { - "name": "Rhonda", - "state": "MI", - "gender": "girl", - "total": 3255, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3255, - "%pct_boys": 0 - }, - { - "name": "Wendy", - "state": "NJ", - "gender": "girl", - "total": 3255, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3255, - "%pct_boys": 0 - }, - { - "name": "Jerry", - "state": "MI", - "gender": "boy", - "total": 3234, - "SUM(sum_boys)": 3234, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Teresa", - "state": "PA", - "gender": "girl", - "total": 3230, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3230, - "%pct_boys": 0 - }, - { - "name": "Melanie", - "state": "MI", - "gender": "girl", - "total": 3228, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3228, - "%pct_boys": 0 - }, - { - "name": "Cassandra", - "state": "MI", - "gender": "girl", - "total": 3209, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3209, - "%pct_boys": 0 - }, - { - "name": "Robin", - "state": "FL", - "gender": "girl", - "total": 3199, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3199, - "%pct_boys": 0 - }, - { - "name": "Mason", - "state": "MI", - "gender": "boy", - "total": 3190, - "SUM(sum_boys)": 3190, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jordan", - "state": "CA", - "gender": "girl", - "total": 3179, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3179, - "%pct_boys": 0 - }, - { - "name": "Vanessa", - "state": "MA", - "gender": "girl", - "total": 3176, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3176, - "%pct_boys": 0 - }, - { - "name": "Austin", - "state": "NJ", - "gender": "boy", - "total": 3169, - "SUM(sum_boys)": 3169, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dennis", - "state": "FL", - "gender": "boy", - "total": 3160, - "SUM(sum_boys)": 3160, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sherry", - "state": "TX", - "gender": "girl", - "total": 3160, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3160, - "%pct_boys": 0 - }, - { - "name": "Hunter", - "state": "IL", - "gender": "boy", - "total": 3158, - "SUM(sum_boys)": 3158, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Miguel", - "state": "FL", - "gender": "boy", - "total": 3144, - "SUM(sum_boys)": 3144, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Antonio", - "state": "OH", - "gender": "boy", - "total": 3137, - "SUM(sum_boys)": 3137, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Debra", - "state": "NJ", - "gender": "girl", - "total": 3132, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3132, - "%pct_boys": 0 - }, - { - "name": "Vincent", - "state": "FL", - "gender": "boy", - "total": 3130, - "SUM(sum_boys)": 3130, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Randy", - "state": "NY", - "gender": "boy", - "total": 3127, - "SUM(sum_boys)": 3127, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tammy", - "state": "NJ", - "gender": "girl", - "total": 3123, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3123, - "%pct_boys": 0 - }, - { - "name": "Cheryl", - "state": "FL", - "gender": "girl", - "total": 3120, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3120, - "%pct_boys": 0 - }, - { - "name": "Rodney", - "state": "NY", - "gender": "boy", - "total": 3120, - "SUM(sum_boys)": 3120, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tina", - "state": "MA", - "gender": "girl", - "total": 3116, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3116, - "%pct_boys": 0 - }, - { - "name": "Tiffany", - "state": "MA", - "gender": "girl", - "total": 3106, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3106, - "%pct_boys": 0 - }, - { - "name": "Destiny", - "state": "PA", - "gender": "girl", - "total": 3103, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3103, - "%pct_boys": 0 - }, - { - "name": "Mason", - "state": "FL", - "gender": "boy", - "total": 3098, - "SUM(sum_boys)": 3098, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joel", - "state": "NJ", - "gender": "boy", - "total": 3089, - "SUM(sum_boys)": 3089, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dana", - "state": "OH", - "gender": "girl", - "total": 3089, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3089, - "%pct_boys": 0 - }, - { - "name": "Sharon", - "state": "MA", - "gender": "girl", - "total": 3084, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3084, - "%pct_boys": 0 - }, - { - "name": "Corey", - "state": "NJ", - "gender": "boy", - "total": 3076, - "SUM(sum_boys)": 3076, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mason", - "state": "IL", - "gender": "boy", - "total": 3074, - "SUM(sum_boys)": 3074, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacey", - "state": "MA", - "gender": "girl", - "total": 3070, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3070, - "%pct_boys": 0 - }, - { - "name": "Ian", - "state": "TX", - "gender": "boy", - "total": 3046, - "SUM(sum_boys)": 3046, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melanie", - "state": "MA", - "gender": "girl", - "total": 3045, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3045, - "%pct_boys": 0 - }, - { - "name": "Russell", - "state": "MI", - "gender": "boy", - "total": 3043, - "SUM(sum_boys)": 3043, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nancy", - "state": "MI", - "gender": "girl", - "total": 3041, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3041, - "%pct_boys": 0 - }, - { - "name": "Paula", - "state": "PA", - "gender": "girl", - "total": 3027, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 3027, - "%pct_boys": 0 - }, - { - "name": "Isaac", - "state": "MI", - "gender": "boy", - "total": 3006, - "SUM(sum_boys)": 3006, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Terry", - "state": "PA", - "gender": "boy", - "total": 3005, - "SUM(sum_boys)": 3005, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Randy", - "state": "IL", - "gender": "boy", - "total": 2993, - "SUM(sum_boys)": 2993, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaac", - "state": "FL", - "gender": "boy", - "total": 2983, - "SUM(sum_boys)": 2983, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Elijah", - "state": "NJ", - "gender": "boy", - "total": 2977, - "SUM(sum_boys)": 2977, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Randy", - "state": "CA", - "gender": "boy", - "total": 2963, - "SUM(sum_boys)": 2963, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lindsey", - "state": "MA", - "gender": "girl", - "total": 2961, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2961, - "%pct_boys": 0 - }, - { - "name": "Destiny", - "state": "MI", - "gender": "girl", - "total": 2958, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2958, - "%pct_boys": 0 - }, - { - "name": "Denise", - "state": "FL", - "gender": "girl", - "total": 2950, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2950, - "%pct_boys": 0 - }, - { - "name": "Shane", - "state": "NJ", - "gender": "boy", - "total": 2944, - "SUM(sum_boys)": 2944, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chelsea", - "state": "NJ", - "gender": "girl", - "total": 2944, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2944, - "%pct_boys": 0 - }, - { - "name": "Gabriel", - "state": "MA", - "gender": "boy", - "total": 2938, - "SUM(sum_boys)": 2938, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michele", - "state": "MA", - "gender": "girl", - "total": 2922, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2922, - "%pct_boys": 0 - }, - { - "name": "Isaiah", - "state": "NJ", - "gender": "boy", - "total": 2919, - "SUM(sum_boys)": 2919, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diane", - "state": "MA", - "gender": "girl", - "total": 2909, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2909, - "%pct_boys": 0 - }, - { - "name": "Lucas", - "state": "MA", - "gender": "boy", - "total": 2890, - "SUM(sum_boys)": 2890, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tony", - "state": "OH", - "gender": "boy", - "total": 2889, - "SUM(sum_boys)": 2889, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Crystal", - "state": "MA", - "gender": "girl", - "total": 2879, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2879, - "%pct_boys": 0 - }, - { - "name": "Katie", - "state": "MA", - "gender": "girl", - "total": 2876, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2876, - "%pct_boys": 0 - }, - { - "name": "Theresa", - "state": "TX", - "gender": "girl", - "total": 2866, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2866, - "%pct_boys": 0 - }, - { - "name": "Jenna", - "state": "CA", - "gender": "girl", - "total": 2838, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2838, - "%pct_boys": 0 - }, - { - "name": "Natalie", - "state": "MA", - "gender": "girl", - "total": 2833, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2833, - "%pct_boys": 0 - }, - { - "name": "Noah", - "state": "NJ", - "gender": "boy", - "total": 2830, - "SUM(sum_boys)": 2830, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Paula", - "state": "NY", - "gender": "girl", - "total": 2828, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2828, - "%pct_boys": 0 - }, - { - "name": "Jamie", - "state": "MA", - "gender": "girl", - "total": 2826, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2826, - "%pct_boys": 0 - }, - { - "name": "Paula", - "state": "IL", - "gender": "girl", - "total": 2823, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2823, - "%pct_boys": 0 - }, - { - "name": "Michele", - "state": "FL", - "gender": "girl", - "total": 2819, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2819, - "%pct_boys": 0 - }, - { - "name": "Sharon", - "state": "MI", - "gender": "girl", - "total": 2818, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2818, - "%pct_boys": 0 - }, - { - "name": "Brenda", - "state": "FL", - "gender": "girl", - "total": 2805, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2805, - "%pct_boys": 0 - }, - { - "name": "Diane", - "state": "OH", - "gender": "girl", - "total": 2794, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2794, - "%pct_boys": 0 - }, - { - "name": "Austin", - "state": "MA", - "gender": "boy", - "total": 2778, - "SUM(sum_boys)": 2778, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Margaret", - "state": "CA", - "gender": "girl", - "total": 2774, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2774, - "%pct_boys": 0 - }, - { - "name": "Stacy", - "state": "NJ", - "gender": "girl", - "total": 2764, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2764, - "%pct_boys": 0 - }, - { - "name": "Frank", - "state": "MA", - "gender": "boy", - "total": 2762, - "SUM(sum_boys)": 2762, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Savannah", - "state": "MI", - "gender": "girl", - "total": 2730, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2730, - "%pct_boys": 0 - }, - { - "name": "Lindsey", - "state": "NY", - "gender": "girl", - "total": 2730, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2730, - "%pct_boys": 0 - }, - { - "name": "Kelsey", - "state": "MA", - "gender": "girl", - "total": 2727, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2727, - "%pct_boys": 0 - }, - { - "name": "Carol", - "state": "IL", - "gender": "girl", - "total": 2713, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2713, - "%pct_boys": 0 - }, - { - "name": "Kathleen", - "state": "FL", - "gender": "girl", - "total": 2711, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2711, - "%pct_boys": 0 - }, - { - "name": "Debra", - "state": "MA", - "gender": "girl", - "total": 2696, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2696, - "%pct_boys": 0 - }, - { - "name": "Sherry", - "state": "MI", - "gender": "girl", - "total": 2681, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2681, - "%pct_boys": 0 - }, - { - "name": "Isaac", - "state": "PA", - "gender": "boy", - "total": 2674, - "SUM(sum_boys)": 2674, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Tony", - "state": "FL", - "gender": "boy", - "total": 2673, - "SUM(sum_boys)": 2673, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Holly", - "state": "MA", - "gender": "girl", - "total": 2641, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2641, - "%pct_boys": 0 - }, - { - "name": "Rodney", - "state": "PA", - "gender": "boy", - "total": 2640, - "SUM(sum_boys)": 2640, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kim", - "state": "NJ", - "gender": "girl", - "total": 2633, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2633, - "%pct_boys": 0 - }, - { - "name": "Robin", - "state": "MA", - "gender": "girl", - "total": 2632, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2632, - "%pct_boys": 0 - }, - { - "name": "Diane", - "state": "MI", - "gender": "girl", - "total": 2631, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2631, - "%pct_boys": 0 - }, - { - "name": "Kathy", - "state": "OH", - "gender": "girl", - "total": 2607, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2607, - "%pct_boys": 0 - }, - { - "name": "Leslie", - "state": "NY", - "gender": "girl", - "total": 2593, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2593, - "%pct_boys": 0 - }, - { - "name": "Theresa", - "state": "FL", - "gender": "girl", - "total": 2590, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2590, - "%pct_boys": 0 - }, - { - "name": "Rhonda", - "state": "PA", - "gender": "girl", - "total": 2585, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2585, - "%pct_boys": 0 - }, - { - "name": "Russell", - "state": "CA", - "gender": "boy", - "total": 2584, - "SUM(sum_boys)": 2584, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cassandra", - "state": "MA", - "gender": "girl", - "total": 2569, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2569, - "%pct_boys": 0 - }, - { - "name": "Brenda", - "state": "MA", - "gender": "girl", - "total": 2557, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2557, - "%pct_boys": 0 - }, - { - "name": "Amber", - "state": "MA", - "gender": "girl", - "total": 2556, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2556, - "%pct_boys": 0 - }, - { - "name": "Miguel", - "state": "NJ", - "gender": "boy", - "total": 2543, - "SUM(sum_boys)": 2543, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carrie", - "state": "FL", - "gender": "girl", - "total": 2526, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2526, - "%pct_boys": 0 - }, - { - "name": "Janet", - "state": "IL", - "gender": "girl", - "total": 2521, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2521, - "%pct_boys": 0 - }, - { - "name": "Brooke", - "state": "NJ", - "gender": "girl", - "total": 2521, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2521, - "%pct_boys": 0 - }, - { - "name": "Paula", - "state": "MI", - "gender": "girl", - "total": 2510, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2510, - "%pct_boys": 0 - }, - { - "name": "Robin", - "state": "NJ", - "gender": "girl", - "total": 2501, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2501, - "%pct_boys": 0 - }, - { - "name": "Chelsea", - "state": "IL", - "gender": "girl", - "total": 2482, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2482, - "%pct_boys": 0 - }, - { - "name": "Hunter", - "state": "CA", - "gender": "boy", - "total": 2473, - "SUM(sum_boys)": 2473, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Troy", - "state": "FL", - "gender": "boy", - "total": 2471, - "SUM(sum_boys)": 2471, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rhonda", - "state": "FL", - "gender": "girl", - "total": 2459, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2459, - "%pct_boys": 0 - }, - { - "name": "Savannah", - "state": "PA", - "gender": "girl", - "total": 2455, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2455, - "%pct_boys": 0 - }, - { - "name": "Sydney", - "state": "NJ", - "gender": "girl", - "total": 2451, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2451, - "%pct_boys": 0 - }, - { - "name": "Phillip", - "state": "NY", - "gender": "boy", - "total": 2442, - "SUM(sum_boys)": 2442, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carol", - "state": "OH", - "gender": "girl", - "total": 2438, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2438, - "%pct_boys": 0 - }, - { - "name": "Adrian", - "state": "NY", - "gender": "boy", - "total": 2437, - "SUM(sum_boys)": 2437, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "FL", - "gender": "boy", - "total": 2435, - "SUM(sum_boys)": 2435, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "April", - "state": "NJ", - "gender": "girl", - "total": 2415, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2415, - "%pct_boys": 0 - }, - { - "name": "Sherry", - "state": "IL", - "gender": "girl", - "total": 2405, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2405, - "%pct_boys": 0 - }, - { - "name": "Katelyn", - "state": "NJ", - "gender": "girl", - "total": 2404, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2404, - "%pct_boys": 0 - }, - { - "name": "Paula", - "state": "MA", - "gender": "girl", - "total": 2403, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2403, - "%pct_boys": 0 - }, - { - "name": "Theresa", - "state": "MA", - "gender": "girl", - "total": 2362, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2362, - "%pct_boys": 0 - }, - { - "name": "Rodney", - "state": "FL", - "gender": "boy", - "total": 2355, - "SUM(sum_boys)": 2355, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brooke", - "state": "MA", - "gender": "girl", - "total": 2335, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2335, - "%pct_boys": 0 - }, - { - "name": "Valerie", - "state": "NJ", - "gender": "girl", - "total": 2322, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2322, - "%pct_boys": 0 - }, - { - "name": "Marcus", - "state": "PA", - "gender": "boy", - "total": 2318, - "SUM(sum_boys)": 2318, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carol", - "state": "TX", - "gender": "girl", - "total": 2310, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2310, - "%pct_boys": 0 - }, - { - "name": "Vincent", - "state": "MA", - "gender": "boy", - "total": 2305, - "SUM(sum_boys)": 2305, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Sydney", - "state": "MA", - "gender": "girl", - "total": 2303, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2303, - "%pct_boys": 0 - }, - { - "name": "Kelsey", - "state": "NJ", - "gender": "girl", - "total": 2302, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2302, - "%pct_boys": 0 - }, - { - "name": "Tony", - "state": "MI", - "gender": "boy", - "total": 2299, - "SUM(sum_boys)": 2299, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diana", - "state": "OH", - "gender": "girl", - "total": 2276, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2276, - "%pct_boys": 0 - }, - { - "name": "Morgan", - "state": "MA", - "gender": "girl", - "total": 2267, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2267, - "%pct_boys": 0 - }, - { - "name": "Jamie", - "state": "OH", - "gender": "boy", - "total": 2255, - "SUM(sum_boys)": 2255, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Haley", - "state": "MA", - "gender": "girl", - "total": 2254, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2254, - "%pct_boys": 0 - }, - { - "name": "Kathy", - "state": "PA", - "gender": "girl", - "total": 2245, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2245, - "%pct_boys": 0 - }, - { - "name": "Debra", - "state": "FL", - "gender": "girl", - "total": 2239, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2239, - "%pct_boys": 0 - }, - { - "name": "Janet", - "state": "CA", - "gender": "girl", - "total": 2225, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2225, - "%pct_boys": 0 - }, - { - "name": "Carlos", - "state": "MA", - "gender": "boy", - "total": 2201, - "SUM(sum_boys)": 2201, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cassandra", - "state": "NJ", - "gender": "girl", - "total": 2183, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2183, - "%pct_boys": 0 - }, - { - "name": "Vincent", - "state": "MI", - "gender": "boy", - "total": 2179, - "SUM(sum_boys)": 2179, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cindy", - "state": "IL", - "gender": "girl", - "total": 2170, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2170, - "%pct_boys": 0 - }, - { - "name": "Kathy", - "state": "IL", - "gender": "girl", - "total": 2168, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2168, - "%pct_boys": 0 - }, - { - "name": "Michele", - "state": "TX", - "gender": "girl", - "total": 2162, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2162, - "%pct_boys": 0 - }, - { - "name": "Barbara", - "state": "MA", - "gender": "girl", - "total": 2160, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2160, - "%pct_boys": 0 - }, - { - "name": "Sherry", - "state": "CA", - "gender": "girl", - "total": 2158, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2158, - "%pct_boys": 0 - }, - { - "name": "Diana", - "state": "PA", - "gender": "girl", - "total": 2158, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2158, - "%pct_boys": 0 - }, - { - "name": "Alexis", - "state": "other", - "gender": "boy", - "total": 2157, - "SUM(sum_boys)": 2157, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Russell", - "state": "IL", - "gender": "boy", - "total": 2155, - "SUM(sum_boys)": 2155, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jack", - "state": "TX", - "gender": "boy", - "total": 2154, - "SUM(sum_boys)": 2154, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cindy", - "state": "OH", - "gender": "girl", - "total": 2151, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2151, - "%pct_boys": 0 - }, - { - "name": "Cindy", - "state": "PA", - "gender": "girl", - "total": 2146, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2146, - "%pct_boys": 0 - }, - { - "name": "Phillip", - "state": "PA", - "gender": "boy", - "total": 2145, - "SUM(sum_boys)": 2145, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Savannah", - "state": "IL", - "gender": "girl", - "total": 2137, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2137, - "%pct_boys": 0 - }, - { - "name": "Nancy", - "state": "FL", - "gender": "girl", - "total": 2136, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2136, - "%pct_boys": 0 - }, - { - "name": "Valerie", - "state": "FL", - "gender": "girl", - "total": 2123, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2123, - "%pct_boys": 0 - }, - { - "name": "Nathan", - "state": "NJ", - "gender": "boy", - "total": 2104, - "SUM(sum_boys)": 2104, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Joel", - "state": "MA", - "gender": "boy", - "total": 2084, - "SUM(sum_boys)": 2084, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Haley", - "state": "NY", - "gender": "girl", - "total": 2079, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2079, - "%pct_boys": 0 - }, - { - "name": "Cody", - "state": "MA", - "gender": "boy", - "total": 2067, - "SUM(sum_boys)": 2067, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jasmine", - "state": "MA", - "gender": "girl", - "total": 2062, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2062, - "%pct_boys": 0 - }, - { - "name": "Carol", - "state": "MI", - "gender": "girl", - "total": 2058, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2058, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "NY", - "gender": "girl", - "total": 2014, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2014, - "%pct_boys": 0 - }, - { - "name": "Jamie", - "state": "PA", - "gender": "boy", - "total": 2009, - "SUM(sum_boys)": 2009, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Russell", - "state": "NJ", - "gender": "boy", - "total": 2004, - "SUM(sum_boys)": 2004, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kim", - "state": "MA", - "gender": "girl", - "total": 2001, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 2001, - "%pct_boys": 0 - }, - { - "name": "Cindy", - "state": "MI", - "gender": "girl", - "total": 1980, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1980, - "%pct_boys": 0 - }, - { - "name": "Isaiah", - "state": "MI", - "gender": "boy", - "total": 1969, - "SUM(sum_boys)": 1969, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Chad", - "state": "MA", - "gender": "boy", - "total": 1963, - "SUM(sum_boys)": 1963, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jose", - "state": "PA", - "gender": "boy", - "total": 1954, - "SUM(sum_boys)": 1954, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Brenda", - "state": "NJ", - "gender": "girl", - "total": 1953, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1953, - "%pct_boys": 0 - }, - { - "name": "Destiny", - "state": "NJ", - "gender": "girl", - "total": 1951, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1951, - "%pct_boys": 0 - }, - { - "name": "Marcus", - "state": "NJ", - "gender": "boy", - "total": 1949, - "SUM(sum_boys)": 1949, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Shane", - "state": "TX", - "gender": "boy", - "total": 1941, - "SUM(sum_boys)": 1941, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Lucas", - "state": "NJ", - "gender": "boy", - "total": 1940, - "SUM(sum_boys)": 1940, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kim", - "state": "PA", - "gender": "girl", - "total": 1929, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1929, - "%pct_boys": 0 - }, - { - "name": "Angel", - "state": "MA", - "gender": "boy", - "total": 1926, - "SUM(sum_boys)": 1926, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacy", - "state": "MA", - "gender": "girl", - "total": 1920, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1920, - "%pct_boys": 0 - }, - { - "name": "Sherry", - "state": "FL", - "gender": "girl", - "total": 1914, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1914, - "%pct_boys": 0 - }, - { - "name": "Carol", - "state": "NJ", - "gender": "girl", - "total": 1914, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1914, - "%pct_boys": 0 - }, - { - "name": "Kathy", - "state": "TX", - "gender": "girl", - "total": 1905, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1905, - "%pct_boys": 0 - }, - { - "name": "Logan", - "state": "NJ", - "gender": "boy", - "total": 1857, - "SUM(sum_boys)": 1857, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Randy", - "state": "FL", - "gender": "boy", - "total": 1855, - "SUM(sum_boys)": 1855, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Russell", - "state": "FL", - "gender": "boy", - "total": 1842, - "SUM(sum_boys)": 1842, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Stacy", - "state": "other", - "gender": "boy", - "total": 1826, - "SUM(sum_boys)": 1826, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "OH", - "gender": "boy", - "total": 1823, - "SUM(sum_boys)": 1823, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathy", - "state": "MI", - "gender": "girl", - "total": 1812, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1812, - "%pct_boys": 0 - }, - { - "name": "Travis", - "state": "NJ", - "gender": "boy", - "total": 1793, - "SUM(sum_boys)": 1793, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "MI", - "gender": "boy", - "total": 1790, - "SUM(sum_boys)": 1790, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Russell", - "state": "MA", - "gender": "boy", - "total": 1765, - "SUM(sum_boys)": 1765, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Nathaniel", - "state": "NJ", - "gender": "boy", - "total": 1742, - "SUM(sum_boys)": 1742, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Margaret", - "state": "MI", - "gender": "girl", - "total": 1731, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1731, - "%pct_boys": 0 - }, - { - "name": "Kim", - "state": "IL", - "gender": "girl", - "total": 1730, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1730, - "%pct_boys": 0 - }, - { - "name": "Carol", - "state": "FL", - "gender": "girl", - "total": 1723, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1723, - "%pct_boys": 0 - }, - { - "name": "Katie", - "state": "NJ", - "gender": "girl", - "total": 1719, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1719, - "%pct_boys": 0 - }, - { - "name": "Janet", - "state": "PA", - "gender": "girl", - "total": 1710, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1710, - "%pct_boys": 0 - }, - { - "name": "Lindsey", - "state": "NJ", - "gender": "girl", - "total": 1686, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1686, - "%pct_boys": 0 - }, - { - "name": "Dennis", - "state": "TX", - "gender": "boy", - "total": 1685, - "SUM(sum_boys)": 1685, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Margaret", - "state": "TX", - "gender": "girl", - "total": 1677, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1677, - "%pct_boys": 0 - }, - { - "name": "Terry", - "state": "CA", - "gender": "boy", - "total": 1671, - "SUM(sum_boys)": 1671, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "NY", - "gender": "boy", - "total": 1647, - "SUM(sum_boys)": 1647, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Carrie", - "state": "MA", - "gender": "girl", - "total": 1642, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1642, - "%pct_boys": 0 - }, - { - "name": "Janet", - "state": "NJ", - "gender": "girl", - "total": 1639, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1639, - "%pct_boys": 0 - }, - { - "name": "Chelsea", - "state": "MA", - "gender": "girl", - "total": 1634, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1634, - "%pct_boys": 0 - }, - { - "name": "Jeffery", - "state": "PA", - "gender": "boy", - "total": 1622, - "SUM(sum_boys)": 1622, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mason", - "state": "NY", - "gender": "boy", - "total": 1616, - "SUM(sum_boys)": 1616, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Logan", - "state": "MA", - "gender": "boy", - "total": 1604, - "SUM(sum_boys)": 1604, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Holly", - "state": "NY", - "gender": "girl", - "total": 1603, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1603, - "%pct_boys": 0 - }, - { - "name": "Holly", - "state": "NJ", - "gender": "girl", - "total": 1600, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1600, - "%pct_boys": 0 - }, - { - "name": "Carol", - "state": "MA", - "gender": "girl", - "total": 1584, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1584, - "%pct_boys": 0 - }, - { - "name": "Elijah", - "state": "MA", - "gender": "boy", - "total": 1525, - "SUM(sum_boys)": 1525, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaiah", - "state": "MA", - "gender": "boy", - "total": 1522, - "SUM(sum_boys)": 1522, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kim", - "state": "OH", - "gender": "girl", - "total": 1518, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1518, - "%pct_boys": 0 - }, - { - "name": "Kathy", - "state": "CA", - "gender": "girl", - "total": 1498, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1498, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "NJ", - "gender": "girl", - "total": 1495, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1495, - "%pct_boys": 0 - }, - { - "name": "Janet", - "state": "OH", - "gender": "girl", - "total": 1483, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1483, - "%pct_boys": 0 - }, - { - "name": "Kim", - "state": "TX", - "gender": "girl", - "total": 1481, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1481, - "%pct_boys": 0 - }, - { - "name": "Cameron", - "state": "NJ", - "gender": "boy", - "total": 1460, - "SUM(sum_boys)": 1460, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Larry", - "state": "NY", - "gender": "boy", - "total": 1458, - "SUM(sum_boys)": 1458, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kim", - "state": "MI", - "gender": "girl", - "total": 1449, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1449, - "%pct_boys": 0 - }, - { - "name": "Alexis", - "state": "IL", - "gender": "boy", - "total": 1446, - "SUM(sum_boys)": 1446, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "April", - "state": "MA", - "gender": "girl", - "total": 1430, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1430, - "%pct_boys": 0 - }, - { - "name": "Travis", - "state": "MA", - "gender": "boy", - "total": 1430, - "SUM(sum_boys)": 1430, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Teresa", - "state": "NJ", - "gender": "girl", - "total": 1420, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1420, - "%pct_boys": 0 - }, - { - "name": "Leslie", - "state": "NJ", - "gender": "girl", - "total": 1412, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1412, - "%pct_boys": 0 - }, - { - "name": "Paula", - "state": "FL", - "gender": "girl", - "total": 1411, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1411, - "%pct_boys": 0 - }, - { - "name": "Dana", - "state": "MA", - "gender": "boy", - "total": 1396, - "SUM(sum_boys)": 1396, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Caleb", - "state": "MA", - "gender": "boy", - "total": 1346, - "SUM(sum_boys)": 1346, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Troy", - "state": "NJ", - "gender": "boy", - "total": 1329, - "SUM(sum_boys)": 1329, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Troy", - "state": "NY", - "gender": "boy", - "total": 1300, - "SUM(sum_boys)": 1300, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "MI", - "gender": "boy", - "total": 1292, - "SUM(sum_boys)": 1292, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dustin", - "state": "NY", - "gender": "boy", - "total": 1285, - "SUM(sum_boys)": 1285, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Hunter", - "state": "MA", - "gender": "boy", - "total": 1283, - "SUM(sum_boys)": 1283, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Vanessa", - "state": "PA", - "gender": "girl", - "total": 1275, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1275, - "%pct_boys": 0 - }, - { - "name": "Phillip", - "state": "NJ", - "gender": "boy", - "total": 1273, - "SUM(sum_boys)": 1273, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Dana", - "state": "other", - "gender": "boy", - "total": 1248, - "SUM(sum_boys)": 1248, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diana", - "state": "MA", - "gender": "girl", - "total": 1230, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1230, - "%pct_boys": 0 - }, - { - "name": "Valerie", - "state": "MI", - "gender": "girl", - "total": 1226, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1226, - "%pct_boys": 0 - }, - { - "name": "Cindy", - "state": "FL", - "gender": "girl", - "total": 1218, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1218, - "%pct_boys": 0 - }, - { - "name": "Janet", - "state": "MI", - "gender": "girl", - "total": 1208, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1208, - "%pct_boys": 0 - }, - { - "name": "Jill", - "state": "FL", - "gender": "girl", - "total": 1205, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1205, - "%pct_boys": 0 - }, - { - "name": "Jordan", - "state": "MA", - "gender": "girl", - "total": 1198, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1198, - "%pct_boys": 0 - }, - { - "name": "Kim", - "state": "FL", - "gender": "girl", - "total": 1169, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1169, - "%pct_boys": 0 - }, - { - "name": "Margaret", - "state": "FL", - "gender": "girl", - "total": 1163, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1163, - "%pct_boys": 0 - }, - { - "name": "Jesus", - "state": "FL", - "gender": "boy", - "total": 1146, - "SUM(sum_boys)": 1146, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Cody", - "state": "NJ", - "gender": "boy", - "total": 1132, - "SUM(sum_boys)": 1132, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Janet", - "state": "TX", - "gender": "girl", - "total": 1119, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1119, - "%pct_boys": 0 - }, - { - "name": "Taylor", - "state": "PA", - "gender": "boy", - "total": 1089, - "SUM(sum_boys)": 1089, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jamie", - "state": "MA", - "gender": "boy", - "total": 1083, - "SUM(sum_boys)": 1083, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Jerry", - "state": "PA", - "gender": "boy", - "total": 1081, - "SUM(sum_boys)": 1081, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angel", - "state": "OH", - "gender": "girl", - "total": 1073, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1073, - "%pct_boys": 0 - }, - { - "name": "Jerry", - "state": "NY", - "gender": "boy", - "total": 1073, - "SUM(sum_boys)": 1073, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kathy", - "state": "FL", - "gender": "girl", - "total": 1070, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1070, - "%pct_boys": 0 - }, - { - "name": "Jenna", - "state": "TX", - "gender": "girl", - "total": 1062, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1062, - "%pct_boys": 0 - }, - { - "name": "Haley", - "state": "NJ", - "gender": "girl", - "total": 1057, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1057, - "%pct_boys": 0 - }, - { - "name": "Shannon", - "state": "OH", - "gender": "boy", - "total": 1046, - "SUM(sum_boys)": 1046, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Diana", - "state": "MI", - "gender": "girl", - "total": 1035, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1035, - "%pct_boys": 0 - }, - { - "name": "Janet", - "state": "MA", - "gender": "girl", - "total": 1033, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1033, - "%pct_boys": 0 - }, - { - "name": "Savannah", - "state": "NY", - "gender": "girl", - "total": 1032, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1032, - "%pct_boys": 0 - }, - { - "name": "Diane", - "state": "TX", - "gender": "girl", - "total": 1025, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1025, - "%pct_boys": 0 - }, - { - "name": "Jeffery", - "state": "NY", - "gender": "boy", - "total": 1022, - "SUM(sum_boys)": 1022, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rhonda", - "state": "NY", - "gender": "girl", - "total": 1008, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 1008, - "%pct_boys": 0 - }, - { - "name": "Antonio", - "state": "MA", - "gender": "boy", - "total": 993, - "SUM(sum_boys)": 993, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rodney", - "state": "NJ", - "gender": "boy", - "total": 992, - "SUM(sum_boys)": 992, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Juan", - "state": "MA", - "gender": "boy", - "total": 989, - "SUM(sum_boys)": 989, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mason", - "state": "MA", - "gender": "boy", - "total": 989, - "SUM(sum_boys)": 989, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Corey", - "state": "CA", - "gender": "boy", - "total": 980, - "SUM(sum_boys)": 980, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Isaac", - "state": "MA", - "gender": "boy", - "total": 978, - "SUM(sum_boys)": 978, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Adrian", - "state": "NJ", - "gender": "boy", - "total": 977, - "SUM(sum_boys)": 977, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Vanessa", - "state": "MI", - "gender": "girl", - "total": 971, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 971, - "%pct_boys": 0 - }, - { - "name": "Carrie", - "state": "NJ", - "gender": "girl", - "total": 952, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 952, - "%pct_boys": 0 - }, - { - "name": "Larry", - "state": "NJ", - "gender": "boy", - "total": 944, - "SUM(sum_boys)": 944, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Randy", - "state": "MA", - "gender": "boy", - "total": 939, - "SUM(sum_boys)": 939, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Taylor", - "state": "NY", - "gender": "boy", - "total": 937, - "SUM(sum_boys)": 937, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Angel", - "state": "MI", - "gender": "girl", - "total": 914, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 914, - "%pct_boys": 0 - }, - { - "name": "Paula", - "state": "NJ", - "gender": "girl", - "total": 906, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 906, - "%pct_boys": 0 - }, - { - "name": "Logan", - "state": "other", - "gender": "girl", - "total": 904, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 904, - "%pct_boys": 0 - }, - { - "name": "Victor", - "state": "MA", - "gender": "boy", - "total": 901, - "SUM(sum_boys)": 901, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Hunter", - "state": "NJ", - "gender": "boy", - "total": 889, - "SUM(sum_boys)": 889, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Janet", - "state": "FL", - "gender": "girl", - "total": 870, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 870, - "%pct_boys": 0 - }, - { - "name": "Sherry", - "state": "NJ", - "gender": "girl", - "total": 865, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 865, - "%pct_boys": 0 - }, - { - "name": "Cindy", - "state": "NJ", - "gender": "girl", - "total": 858, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 858, - "%pct_boys": 0 - }, - { - "name": "Jamie", - "state": "IL", - "gender": "boy", - "total": 842, - "SUM(sum_boys)": 842, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Leslie", - "state": "MA", - "gender": "girl", - "total": 831, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 831, - "%pct_boys": 0 - }, - { - "name": "Miguel", - "state": "MA", - "gender": "boy", - "total": 48, - "SUM(sum_boys)": 48, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Rebecca", - "state": "other", - "gender": "boy", - "total": 45, - "SUM(sum_boys)": 45, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Samantha", - "state": "other", - "gender": "boy", - "total": 44, - "SUM(sum_boys)": 44, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Andrea", - "state": "other", - "gender": "boy", - "total": 40, - "SUM(sum_boys)": 40, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Mary", - "state": "other", - "gender": "boy", - "total": 35, - "SUM(sum_boys)": 35, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Erica", - "state": "other", - "gender": "boy", - "total": 34, - "SUM(sum_boys)": 34, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Michelle", - "state": "other", - "gender": "boy", - "total": 33, - "SUM(sum_boys)": 33, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Anna", - "state": "other", - "gender": "boy", - "total": 32, - "SUM(sum_boys)": 32, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Julia", - "state": "other", - "gender": "boy", - "total": 32, - "SUM(sum_boys)": 32, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Melissa", - "state": "other", - "gender": "boy", - "total": 32, - "SUM(sum_boys)": 32, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Victoria", - "state": "other", - "gender": "boy", - "total": 32, - "SUM(sum_boys)": 32, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Catherine", - "state": "other", - "gender": "boy", - "total": 30, - "SUM(sum_boys)": 30, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Kim", - "state": "other", - "gender": "boy", - "total": 14, - "SUM(sum_boys)": 14, - "SUM(sum_girls)": 0, - "%pct_boys": 0.0007479431563201197 - }, - { - "name": "Alex", - "state": "other", - "gender": "girl", - "total": 10, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 10, - "%pct_boys": 0 - }, - { - "name": "Cody", - "state": "other", - "gender": "girl", - "total": 9, - "SUM(sum_boys)": 0, - "SUM(sum_girls)": 9, - "%pct_boys": 0 - } - ], - "columns": [ - "name", - "state", - "gender", - "total", - "SUM(sum_boys)", - "SUM(sum_girls)", - "%pct_boys" - ] - } - } -} diff --git a/packages/demo/storybook/stories/plugins/table/data.js b/packages/demo/storybook/stories/plugins/table/data.js deleted file mode 100644 index ddbd03cc0c..0000000000 --- a/packages/demo/storybook/stories/plugins/table/data.js +++ /dev/null @@ -1,48 +0,0 @@ -/* eslint-disable sort-keys */ -export { default as birthNames } from './birthNames.json'; - -export default { - columns: ['name', 'sum__num'], - records: [ - { - name: 'Michael', - sum__num: 2467063, - }, - { - name: 'Christopher', - sum__num: 1725265, - }, - { - name: 'David', - sum__num: 1570516, - }, - { - name: 'James', - sum__num: 1506025, - }, - { - name: 'John', - sum__num: 1426074, - }, - { - name: 'Matthew', - sum__num: 1355803, - }, - { - name: 'Robert', - sum__num: 1314800, - }, - { - name: 'Daniel', - sum__num: 1159354, - }, - { - name: 'Joseph', - sum__num: 1114098, - }, - { - name: 'William', - sum__num: 1113701, - }, - ], -}; diff --git a/packages/demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx b/packages/demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx deleted file mode 100644 index 008f2a6431..0000000000 --- a/packages/demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx +++ /dev/null @@ -1,98 +0,0 @@ -import React from 'react'; -import { text, select } from '@storybook/addon-knobs'; - -import { SuperChart, ChartDataProvider } from '@superset-ui/chart'; -import { SupersetClient } from '@superset-ui/connection'; -import { BigNumberChartPlugin as LegacyBigNumberPlugin } from '@superset-ui/legacy-preset-chart-big-number'; -import LegacySankeyPlugin from '@superset-ui/legacy-plugin-chart-sankey'; -import LegacySunburstPlugin from '@superset-ui/legacy-plugin-chart-sunburst'; -import LegacyWordCloudPlugin from '@superset-ui/legacy-plugin-chart-word-cloud'; -import WordCloudPlugin from '@superset-ui/plugin-chart-word-cloud'; - -import { - bigNumberFormData, - sankeyFormData, - sunburstFormData, - wordCloudFormData, -} from '@superset-ui/chart/test/fixtures/formData'; - -import Expandable from '../../shared/components/Expandable'; -import VerifyCORS, { renderError } from '../../shared/components/VerifyCORS'; - -const BIG_NUMBER = bigNumberFormData.viz_type; -const SANKEY = sankeyFormData.viz_type; -const SUNBURST = sunburstFormData.viz_type; -const WORD_CLOUD_LEGACY = wordCloudFormData.viz_type; -const WORD_CLOUD = 'new_word_cloud'; - -new LegacyBigNumberPlugin().configure({ key: BIG_NUMBER }).register(); -// @ts-ignore -new LegacySankeyPlugin().configure({ key: SANKEY }).register(); -// @ts-ignore -new LegacySunburstPlugin().configure({ key: SUNBURST }).register(); -// @ts-ignore -new LegacyWordCloudPlugin().configure({ key: WORD_CLOUD_LEGACY }).register(); -// @ts-ignore -new WordCloudPlugin().configure({ key: WORD_CLOUD }).register(); - -const VIS_TYPES = [BIG_NUMBER, SANKEY, SUNBURST, WORD_CLOUD, WORD_CLOUD_LEGACY]; -const FORM_DATA_LOOKUP = { - [BIG_NUMBER]: bigNumberFormData, - [SANKEY]: sankeyFormData, - [SUNBURST]: sunburstFormData, - [WORD_CLOUD]: { ...wordCloudFormData, viz_type: WORD_CLOUD }, - [WORD_CLOUD_LEGACY]: wordCloudFormData, -}; - -export default { - title: 'Core Packages|@superset-ui/chart', -}; - -export const dataProvider = () => { - const host = text('Set Superset App host for CORS request', 'localhost:9000'); - const visType = select('Chart Plugin Type', VIS_TYPES, VIS_TYPES[0]); - const formData = text('Override formData', JSON.stringify(FORM_DATA_LOOKUP[visType])); - const width = text('Vis width', '500'); - const height = text('Vis height', '300'); - - return ( -
- - {() => ( - - {({ loading, payload, error }) => { - if (loading) return
Loading!
; - - if (error) return renderError(error); - - if (payload) - return ( - <> - -
- -
{JSON.stringify(payload, null, 2)}
-
- - ); - - return null; - }} -
- )} -
-
- ); -}; - -dataProvider.story = { name: 'ChartDataProvider' }; diff --git a/packages/demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx b/packages/demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx deleted file mode 100644 index 4977f60c81..0000000000 --- a/packages/demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx +++ /dev/null @@ -1,143 +0,0 @@ -import React from 'react'; -import { text, withKnobs } from '@storybook/addon-knobs'; -import { SuperChart } from '@superset-ui/chart'; -import { - DiligentChartPlugin, - BuggyChartPlugin, - ChartKeys, -} from '@superset-ui/chart/test/components/MockChartPlugins'; - -new DiligentChartPlugin().configure({ key: ChartKeys.DILIGENT }).register(); -new BuggyChartPlugin().configure({ key: ChartKeys.BUGGY }).register(); - -const DEFAULT_QUERY_DATA = { data: ['foo', 'bar'] }; - -export default { - title: 'Core Packages|@superset-ui/chart', - decorators: [withKnobs], -}; - -export const basic = () => { - const width = text('Vis width', '100%'); - const height = text('Vis height', '100%'); - - return ( - - ); -}; -export const container50pct = () => { - const width = text('Vis width', '50%'); - const height = text('Vis height', '50%'); - - return ( - - ); -}; -container50pct.story = { name: '50% of container' }; - -export const fixedDimension = () => { - const width = text('Vis width', '500'); - const height = text('Vis height', '300'); - - return ( - - ); -}; - -export const fixedWidth100height = () => { - const width = text('Vis width', '500'); - const height = text('Vis height', '100%'); - - return ( - - ); -}; -fixedWidth100height.story = { name: 'fixed width, 100% height' }; - -export const fixedHeight100Width = () => { - const width = text('Vis width', '100%'); - const height = text('Vis height', '300'); - - return ( - - ); -}; -fixedHeight100Width.story = { name: 'fixed height, 100% width' }; - -export const withErrorBoundar = () => { - const width = text('Vis width', '500'); - const height = text('Vis height', '300'); - - return ( - - ); -}; -export const withWrapper = () => { - const width = text('Vis width', '100%'); - const height = text('Vis height', '100%'); - - return ( - ( -
-
With wrapper!
- {children} -
- )} - /> - ); -}; -export const withNoResults = () => { - const width = text('Vis width', '100%'); - const height = text('Vis height', '100%'); - - return ; -}; -export const withNoResultsAndMedium = () => { - const width = text('Vis width', '400'); - const height = text('Vis height', '300'); - - return ; -}; -export const withNoResultsAndSmall = () => { - const width = text('Vis width', '150'); - const height = text('Vis height', '200'); - - return ; -}; diff --git a/packages/demo/storybook/stories/superset-ui-color/ColorPallettesStories.jsx b/packages/demo/storybook/stories/superset-ui-color/ColorPallettesStories.jsx deleted file mode 100644 index 4874dffd55..0000000000 --- a/packages/demo/storybook/stories/superset-ui-color/ColorPallettesStories.jsx +++ /dev/null @@ -1,33 +0,0 @@ -import React from 'react'; - -import AirbnbPalettes from '@superset-ui/color/src/colorSchemes/categorical/airbnb'; -import D3Palettes from '@superset-ui/color/src/colorSchemes/categorical/d3'; -import GooglePalettes from '@superset-ui/color/src/colorSchemes/categorical/google'; -import LyftPalettes from '@superset-ui/color/src/colorSchemes/categorical/lyft'; - -import SequantialCommonPalettes from '@superset-ui/color/src/colorSchemes/sequential/common'; -import SequantialD3Palettes from '@superset-ui/color/src/colorSchemes/sequential/d3'; - -import RenderPalettes from './RenderPalettes'; - -export default { - title: 'Core Packages|@superset-ui/color', -}; - -export const categoricalPalettes = () => - [ - { palettes: AirbnbPalettes, storyName: 'Airbnb' }, - { palettes: D3Palettes, storyName: 'd3' }, - { palettes: GooglePalettes, storyName: 'Google' }, - { palettes: LyftPalettes, storyName: 'Lyft' }, - ].map(({ palettes, storyName }) => ( - - )); - -export const sequentialPalettes = () => - [ - { palettes: SequantialCommonPalettes, storyName: 'Common' }, - { palettes: SequantialD3Palettes, storyName: 'd3' }, - ].map(({ palettes, storyName }) => ( - - )); diff --git a/packages/demo/storybook/stories/superset-ui-connection/ConnectionStories.tsx b/packages/demo/storybook/stories/superset-ui-connection/ConnectionStories.tsx deleted file mode 100644 index df838532e2..0000000000 --- a/packages/demo/storybook/stories/superset-ui-connection/ConnectionStories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import React from 'react'; -import { select, text, withKnobs } from '@storybook/addon-knobs'; -import { bigNumberFormData } from '@superset-ui/chart/test/fixtures/formData'; - -import VerifyCORS, { Props as VerifyCORSProps } from '../../shared/components/VerifyCORS'; -import Expandable from '../../shared/components/Expandable'; - -const REQUEST_METHODS = ['GET', 'POST']; - -export default { - title: 'Core Packages|@superset-ui/connection', - decorators: [withKnobs], -}; - -export const configureCORS = () => { - const host = text('Superset App host for CORS request', 'localhost:9000'); - const endpoint = text('Endpoint to test (blank to test auth only)', ''); - const method = endpoint ? select('Request method', REQUEST_METHODS, 'POST') : undefined; - const postPayload = - endpoint && method === 'POST' - ? text('Optional POST payload', JSON.stringify({ form_data: bigNumberFormData })) - : undefined; - - return ( -
- - {({ payload }) => ( - <> -
Success! Update knobs below to try again
-
- -
-
{JSON.stringify(payload, null, 2)}
-
- - )} -
-
- ); -}; diff --git a/packages/demo/tsconfig.json b/packages/demo/tsconfig.json deleted file mode 100644 index 8c4bed6d04..0000000000 --- a/packages/demo/tsconfig.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "outDir": "../../build/lib", - "rootDir": "../../", - "emitDeclarationOnly": false, - "sourceMap": true, - "allowSyntheticDefaultImports": true, - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "moduleResolution": "node", - "noImplicitAny": false, - "jsx": "react", - "noEmit": false, - }, - "exclude": ["node_modules"], - "include": [ - "storybook", - "../**/src", - "../../plugins/**/src", - ] -} \ No newline at end of file diff --git a/packages/superset-ui-chart-composition/test/tooltip/TooltipTable.test.tsx b/packages/superset-ui-chart-composition/test/tooltip/TooltipTable.test.tsx index 6120274358..8ac78597db 100644 --- a/packages/superset-ui-chart-composition/test/tooltip/TooltipTable.test.tsx +++ b/packages/superset-ui-chart-composition/test/tooltip/TooltipTable.test.tsx @@ -42,6 +42,11 @@ describe('TooltipTable', () => { ); expect(wrapper.find('tbody')).toHaveLength(1); expect(wrapper.find('tr')).toHaveLength(3); - expect(wrapper.find('tr > td').first().text()).toEqual('Cersei'); + expect( + wrapper + .find('tr > td') + .first() + .text(), + ).toEqual('Cersei'); }); }); diff --git a/packages/superset-ui-chart/test/components/MockChartPlugins.tsx b/packages/superset-ui-chart/test/components/MockChartPlugins.tsx index 0edecba47a..6ac325ae2b 100644 --- a/packages/superset-ui-chart/test/components/MockChartPlugins.tsx +++ b/packages/superset-ui-chart/test/components/MockChartPlugins.tsx @@ -42,7 +42,7 @@ export const TestComponent = ({ {[width, height].join('x')}
- {JSON.stringify(formData)} + {JSON.stringify(formData)}
); diff --git a/packages/superset-ui-chart/test/components/SuperChart.test.tsx b/packages/superset-ui-chart/test/components/SuperChart.test.tsx index d79b855f91..9ff0f535dc 100644 --- a/packages/superset-ui-chart/test/components/SuperChart.test.tsx +++ b/packages/superset-ui-chart/test/components/SuperChart.test.tsx @@ -247,7 +247,11 @@ describe('SuperChart', () => { return promiseTimeout(() => { const renderedWrapper = wrapper.render(); - const boundingBox = renderedWrapper.find('div.test-component').parent().parent().parent(); + const boundingBox = renderedWrapper + .find('div.test-component') + .parent() + .parent() + .parent(); expect(boundingBox.css('width')).toEqual('50%'); expect(boundingBox.css('height')).toEqual('125px'); expect(renderedWrapper.find('div.test-component')).toHaveLength(1); @@ -268,7 +272,11 @@ describe('SuperChart', () => { return promiseTimeout(() => { const renderedWrapper = wrapper.render(); - const boundingBox = renderedWrapper.find('div.test-component').parent().parent().parent(); + const boundingBox = renderedWrapper + .find('div.test-component') + .parent() + .parent() + .parent(); expect(boundingBox.css('width')).toEqual('50px'); expect(boundingBox.css('height')).toEqual('25%'); expect(renderedWrapper.find('div.test-component')).toHaveLength(1); diff --git a/packages/superset-ui-chart/test/components/SuperChartCore.test.tsx b/packages/superset-ui-chart/test/components/SuperChartCore.test.tsx index db28abe5a9..502d06db2c 100644 --- a/packages/superset-ui-chart/test/components/SuperChartCore.test.tsx +++ b/packages/superset-ui-chart/test/components/SuperChartCore.test.tsx @@ -94,7 +94,12 @@ describe('SuperChartCore', () => { ); return promiseTimeout(() => { - expect(wrapper.render().find('.message').text()).toEqual('hulk'); + expect( + wrapper + .render() + .find('.message') + .text(), + ).toEqual('hulk'); }); }); it('uses preTransformProps when specified', () => { @@ -110,7 +115,12 @@ describe('SuperChartCore', () => { ); return promiseTimeout(() => { - expect(wrapper.render().find('.message').text()).toEqual('hulk'); + expect( + wrapper + .render() + .find('.message') + .text(), + ).toEqual('hulk'); }); }); it('uses postTransformProps when specified', () => { @@ -122,7 +132,12 @@ describe('SuperChartCore', () => { ); return promiseTimeout(() => { - expect(wrapper.render().find('.message').text()).toEqual('hulk'); + expect( + wrapper + .render() + .find('.message') + .text(), + ).toEqual('hulk'); }); }); it('renders if chartProps is not specified', () => { diff --git a/packages/superset-ui-color/src/CategoricalColorNamespace.ts b/packages/superset-ui-color/src/CategoricalColorNamespace.ts index d531aee081..0b1facb6c4 100644 --- a/packages/superset-ui-color/src/CategoricalColorNamespace.ts +++ b/packages/superset-ui-color/src/CategoricalColorNamespace.ts @@ -64,7 +64,9 @@ export function getNamespace(name: string = DEFAULT_NAMESPACE) { } export function getColor(value?: string, schemeId?: string, namespace?: string) { - return getNamespace(namespace).getScale(schemeId).getColor(value); + return getNamespace(namespace) + .getScale(schemeId) + .getColor(value); } export function getScale(scheme?: string, namespace?: string) { diff --git a/packages/superset-ui-color/src/SequentialScheme.ts b/packages/superset-ui-color/src/SequentialScheme.ts index a25b6f05af..31cefd65c1 100644 --- a/packages/superset-ui-color/src/SequentialScheme.ts +++ b/packages/superset-ui-color/src/SequentialScheme.ts @@ -2,7 +2,7 @@ import { scaleLinear } from 'd3-scale'; import ColorScheme, { ColorSchemeConfig } from './ColorScheme'; function range(count: number) { - const values: number[] = []; + const values = []; for (let i = 0; i < count; i += 1) { values.push(i); } @@ -31,7 +31,10 @@ export default class SequentialScheme extends ColorScheme { const denominator = this.colors.length - 1; const domain = range(this.colors.length).map(i => valueScale(i / denominator)); - return scaleLinear().domain(domain).range(this.colors).clamp(true); + return scaleLinear() + .domain(domain) + .range(this.colors) + .clamp(true); } getColors(numColors: number = this.colors.length): string[] { diff --git a/packages/superset-ui-color/test/CategoricalColorNameSpace.test.ts b/packages/superset-ui-color/test/CategoricalColorNameSpace.test.ts index da479f0330..d5c1f6dd70 100644 --- a/packages/superset-ui-color/test/CategoricalColorNameSpace.test.ts +++ b/packages/superset-ui-color/test/CategoricalColorNameSpace.test.ts @@ -127,14 +127,18 @@ describe('CategoricalColorNamespace', () => { it('getColor(value) returns a color from default scheme in default namespace', () => { const value = 'dog'; const color = getColor(value); - const color2 = getNamespace().getScale().getColor(value); + const color2 = getNamespace() + .getScale() + .getColor(value); expect(color).toBe(color2); }); it('getColor(value, scheme) returns a color from specified scheme in default namespace', () => { const value = 'dog'; const scheme = 'testColors'; const color = getColor(value, scheme); - const color2 = getNamespace().getScale(scheme).getColor(value); + const color2 = getNamespace() + .getScale(scheme) + .getColor(value); expect(color).toBe(color2); }); it('getColor(value, scheme, namespace) returns a color from specified scheme in specified namespace', () => { @@ -142,7 +146,9 @@ describe('CategoricalColorNamespace', () => { const scheme = 'testColors'; const namespace = 'test-getColor'; const color = getColor(value, scheme, namespace); - const color2 = getNamespace(namespace).getScale(scheme).getColor(value); + const color2 = getNamespace(namespace) + .getScale(scheme) + .getColor(value); expect(color).toBe(color2); }); }); diff --git a/packages/superset-ui-core/src/models/ExtensibleFunction.ts b/packages/superset-ui-core/src/models/ExtensibleFunction.ts index 0ca3551931..aad65f47ee 100644 --- a/packages/superset-ui-core/src/models/ExtensibleFunction.ts +++ b/packages/superset-ui-core/src/models/ExtensibleFunction.ts @@ -6,7 +6,7 @@ export default class ExtensibleFunction extends Function { constructor(fn: Function) { super(); - // eslint-disable-next-line @typescript-eslint/no-unsafe-return, no-constructor-return + // eslint-disable-next-line no-constructor-return return Object.setPrototypeOf(fn, new.target.prototype); } } diff --git a/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts b/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts index c7e43d1122..bcb281fb81 100644 --- a/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts +++ b/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts @@ -1,4 +1,4 @@ -import { ExtensibleFunction } from '../../src'; +import ExtensibleFunction from '../../src/models/ExtensibleFunction'; describe('ExtensibleFunction', () => { class Func1 extends ExtensibleFunction { diff --git a/packages/superset-ui-core/test/models/Plugin.test.ts b/packages/superset-ui-core/test/models/Plugin.test.ts index 846168e7f3..3426fbd931 100644 --- a/packages/superset-ui-core/test/models/Plugin.test.ts +++ b/packages/superset-ui-core/test/models/Plugin.test.ts @@ -1,4 +1,4 @@ -import { Plugin } from '../../src'; +import Plugin from '../../src/models/Plugin'; describe('Plugin', () => { it('exists', () => { diff --git a/packages/superset-ui-core/test/models/Preset.test.ts b/packages/superset-ui-core/test/models/Preset.test.ts index 513353d5e7..97b86c60b5 100644 --- a/packages/superset-ui-core/test/models/Preset.test.ts +++ b/packages/superset-ui-core/test/models/Preset.test.ts @@ -1,4 +1,5 @@ -import { Plugin, Preset } from '../../src'; +import Plugin from '../../src/models/Plugin'; +import Preset from '../../src/models/Preset'; describe('Preset', () => { it('exists', () => { diff --git a/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts b/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts index 8b16a4ce93..e5bb6cc451 100644 --- a/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts +++ b/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts @@ -1,4 +1,5 @@ -import { Registry, RegistryWithDefaultKey } from '../../src'; +import RegistryWithDefaultKey from '../../src/models/RegistryWithDefaultKey'; +import Registry from '../../src/models/Registry'; describe('RegistryWithDefaultKey', () => { let registry: RegistryWithDefaultKey; @@ -30,7 +31,10 @@ describe('RegistryWithDefaultKey', () => { describe('.get()', () => { beforeEach(() => { - registry.registerValue('abc', 100).registerValue('def', 200).setDefaultKey('abc'); + registry + .registerValue('abc', 100) + .registerValue('def', 200) + .setDefaultKey('abc'); }); it('.get() returns value from default key', () => { expect(registry.get()).toEqual(100); diff --git a/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts b/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts index fd9d2deb72..70b7dcf268 100644 --- a/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts +++ b/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts @@ -1,4 +1,4 @@ -import { convertKeysToCamelCase } from '../../src'; +import convertKeysToCamelCase from '../../src/utils/convertKeysToCamelCase'; describe('convertKeysToCamelCase(object)', () => { it('returns undefined for undefined input', () => { diff --git a/packages/superset-ui-core/test/utils/isDefined.test.ts b/packages/superset-ui-core/test/utils/isDefined.test.ts index aee9f52800..d69234ba09 100644 --- a/packages/superset-ui-core/test/utils/isDefined.test.ts +++ b/packages/superset-ui-core/test/utils/isDefined.test.ts @@ -1,4 +1,4 @@ -import { isDefined } from '../../src'; +import isDefined from '../../src/utils/isDefined'; describe('isDefined(value)', () => { it('returns true if value is not null and not undefined', () => { diff --git a/packages/superset-ui-core/test/utils/isRequired.test.ts b/packages/superset-ui-core/test/utils/isRequired.test.ts index afb8428a90..ed0ec6a602 100644 --- a/packages/superset-ui-core/test/utils/isRequired.test.ts +++ b/packages/superset-ui-core/test/utils/isRequired.test.ts @@ -1,4 +1,4 @@ -import { isRequired } from '../../src'; +import isRequired from '../../src/utils/isRequired'; describe('isRequired(field)', () => { it('should throw error with the given field in the message', () => { diff --git a/packages/superset-ui-core/test/utils/makeSingleton.test.ts b/packages/superset-ui-core/test/utils/makeSingleton.test.ts index 59c5cf81dc..625cc2166b 100644 --- a/packages/superset-ui-core/test/utils/makeSingleton.test.ts +++ b/packages/superset-ui-core/test/utils/makeSingleton.test.ts @@ -1,4 +1,4 @@ -import { makeSingleton } from '../../src'; +import makeSingleton from '../../src/utils/makeSingleton'; describe('makeSingleton()', () => { class Dog { diff --git a/packages/superset-ui-demo/.storybook/addons.js b/packages/superset-ui-demo/.storybook/addons.js new file mode 100644 index 0000000000..d3cbca5f90 --- /dev/null +++ b/packages/superset-ui-demo/.storybook/addons.js @@ -0,0 +1,4 @@ +import '@storybook/addon-actions/register'; +import '@storybook/addon-links/register'; +import '@storybook/addon-knobs/register'; +import 'storybook-addon-jsx/register'; diff --git a/packages/demo/.storybook/preview.js b/packages/superset-ui-demo/.storybook/config.js similarity index 61% rename from packages/demo/.storybook/preview.js rename to packages/superset-ui-demo/.storybook/config.js index 3cee8e76f7..33f3917ad1 100644 --- a/packages/demo/.storybook/preview.js +++ b/packages/superset-ui-demo/.storybook/config.js @@ -1,10 +1,4 @@ -import { addParameters, addDecorator } from '@storybook/react'; -import { jsxDecorator } from 'storybook-addon-jsx'; - -import 'bootstrap/dist/css/bootstrap.min.css'; -import './storybook.css'; - -addDecorator(jsxDecorator); +import { addParameters, configure } from '@storybook/react'; addParameters({ options: { @@ -21,8 +15,12 @@ addParameters({ sidebarAnimations: true, sortStoriesByKind: false, url: '#', - storySort: (a, b) => { - return a[1].kind === b[1].kind ? 0 : a[1].id.localeCompare(b[1].id, undefined, { numeric: true }); - }, }, }); + +function loadStorybook() { + require('./storybook.css'); + require('../storybook/stories'); // all of the stories +} + +configure(loadStorybook, module); diff --git a/packages/superset-ui-demo/.storybook/storybook.css b/packages/superset-ui-demo/.storybook/storybook.css new file mode 100644 index 0000000000..3ea2e1ad9a --- /dev/null +++ b/packages/superset-ui-demo/.storybook/storybook.css @@ -0,0 +1,8 @@ +html, +body, +#root { + height: 100%; + font-family: BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif; + font-weight: 200; + color: #484848; +} diff --git a/packages/superset-ui-demo/.storybook/webpack.config.js b/packages/superset-ui-demo/.storybook/webpack.config.js new file mode 100644 index 0000000000..3653b919f5 --- /dev/null +++ b/packages/superset-ui-demo/.storybook/webpack.config.js @@ -0,0 +1,54 @@ +const path = require('path'); + +const jsBabelPresets = [ + ['@babel/preset-env', { + useBuiltIns: 'usage', + corejs: 3, + loose: true, + modules: false, + shippedProposals: true, + targets: false + }], + '@babel/preset-react', +]; + +const tsBabelPresets = jsBabelPresets.concat(['@babel/preset-typescript']); + +const babelPlugins = [ + '@babel/plugin-proposal-object-rest-spread', + '@babel/plugin-proposal-class-properties', + '@babel/plugin-syntax-dynamic-import', + ["@babel/plugin-transform-runtime", { "corejs": 3 }] +]; + +module.exports = async ({ config }) => { + const cacheDirectory = path.resolve('../../../node_modules/.cache/storybook'); + + // rule that applies to jsx? files + config.module.rules[0].use = { + loader: 'babel-loader', + options: { + cacheDirectory, + presets: jsBabelPresets, + plugins: babelPlugins, + } + }; + + // add rule for handling typescript + config.module.rules.push({ + test: /\.tsx?$/, + exclude: /node_modules/, + use: { + loader: 'babel-loader', + options: { + cacheDirectory, + presets: tsBabelPresets, + plugins: babelPlugins, + } + }, + }); + + config.resolve.extensions.push('.ts', '.tsx'); + + return config; +}; diff --git a/packages/demo/README.md b/packages/superset-ui-demo/README.md similarity index 100% rename from packages/demo/README.md rename to packages/superset-ui-demo/README.md diff --git a/packages/demo/package.json b/packages/superset-ui-demo/package.json similarity index 52% rename from packages/demo/package.json rename to packages/superset-ui-demo/package.json index e85b47dbd5..9ed6ab89a7 100644 --- a/packages/demo/package.json +++ b/packages/superset-ui-demo/package.json @@ -6,9 +6,9 @@ "main": "index.js", "scripts": { "demo:clean": "rm -rf _gh-pages", - "demo:build": "npm run demo:clean && build-storybook -o _gh-pages", + "demo:build": "build-storybook -o _gh-pages", "demo:publish": "gh-pages -d _gh-pages", - "deploy-demo": "npm run demo:build && npm run demo:publish && npm run demo:clean", + "deploy-demo": "npm run demo:clean && npm run demo:build && npm run demo:publish && npm run demo:clean", "storybook": "start-storybook -p 9001" }, "repository": { @@ -29,39 +29,32 @@ }, "homepage": "https://github.com/apache-superset/superset-ui#readme", "dependencies": { - "@storybook/addon-info": "^5.3.18", - "@storybook/addon-actions": "^5.3.18", - "@storybook/addon-knobs": "^5.3.18", - "@storybook/addon-links": "^5.3.18", - "@storybook/addons": "^5.3.18", - "@storybook/react": "^5.3.18", - "@storybook/preset-typescript": "^3.0.0", - "@superset-ui/chart": "*", - "@superset-ui/color": "*", - "@superset-ui/connection": "*", + "@storybook/addon-actions": "^5.0.6", + "@storybook/addon-knobs": "^5.2.3", + "@storybook/addon-links": "^5.0.6", + "@storybook/addons": "^5.0.6", + "@storybook/react": "^5.2.3", + "@superset-ui/chart": "0.12.12", + "@superset-ui/color": "0.12.12", + "@superset-ui/connection": "0.12.12", "@superset-ui/legacy-plugin-chart-sankey": "^0.11.15", "@superset-ui/legacy-plugin-chart-sunburst": "^0.11.15", "@superset-ui/legacy-plugin-chart-word-cloud": "^0.11.15", - "@superset-ui/legacy-plugin-chart-table": "*", - "@superset-ui/legacy-preset-chart-big-number": "*", - "@superset-ui/number-format": "*", + "@superset-ui/legacy-preset-chart-big-number": "^0.11.15", + "@superset-ui/number-format": "0.12.12", "@superset-ui/plugin-chart-word-cloud": "^0.11.15", - "@superset-ui/query": "*", - "@superset-ui/time-format": "*", - "@superset-ui/translation": "*", + "@superset-ui/query": "0.12.12", + "@superset-ui/time-format": "0.12.12", "@types/storybook__react": "4.0.2", - "bootstrap": "^3.4.1", + "bootstrap": "^4.3.1", "core-js": "3.6.4", - "gh-pages": "^2.2.0", - "jquery": "^3.4.1", "react": "^16.6.0", "storybook-addon-jsx": "^7.1.0" }, "devDependencies": { - "@babel/core": "^7.9.0", - "typescript": "^3.8.3", - "ts-loader": "^6.2.2", - "babel-loader": "^8.1.0", - "fork-ts-checker-webpack-plugin": "^4.1.2" + "@babel/core": "^7.8.4", + "@babel/plugin-transform-runtime": "^7.8.3", + "babel-loader": "^8.0.6", + "gh-pages": "^2.2.0" } } diff --git a/packages/demo/storybook/shared/components/ErrorMessage.tsx b/packages/superset-ui-demo/storybook/shared/components/ErrorMessage.tsx similarity index 100% rename from packages/demo/storybook/shared/components/ErrorMessage.tsx rename to packages/superset-ui-demo/storybook/shared/components/ErrorMessage.tsx diff --git a/packages/demo/storybook/shared/components/Expandable.tsx b/packages/superset-ui-demo/storybook/shared/components/Expandable.tsx similarity index 83% rename from packages/demo/storybook/shared/components/Expandable.tsx rename to packages/superset-ui-demo/storybook/shared/components/Expandable.tsx index f09ab00b04..dde54dc6c6 100644 --- a/packages/demo/storybook/shared/components/Expandable.tsx +++ b/packages/superset-ui-demo/storybook/shared/components/Expandable.tsx @@ -26,7 +26,11 @@ export default class Expandable extends React.Component { return (
-
diff --git a/packages/demo/storybook/shared/components/VerifyCORS.tsx b/packages/superset-ui-demo/storybook/shared/components/VerifyCORS.tsx similarity index 92% rename from packages/demo/storybook/shared/components/VerifyCORS.tsx rename to packages/superset-ui-demo/storybook/shared/components/VerifyCORS.tsx index f4a7a1258b..de12253c80 100644 --- a/packages/demo/storybook/shared/components/VerifyCORS.tsx +++ b/packages/superset-ui-demo/storybook/shared/components/VerifyCORS.tsx @@ -73,7 +73,7 @@ export default class VerifyCORS extends React.Component { .then(response => this.setState({ didVerify: true, error: undefined, payload: response })) .catch((error: Response) => { const { status, statusText = error } = error; - this.setState({ error: new Error(`${status || ''}${status ? ':' : ''} ${statusText}`) }); + this.setState({ error: Error(`${status || ''}${status ? ':' : ''} ${statusText}`) }); }); } @@ -94,7 +94,11 @@ export default class VerifyCORS extends React.Component { 3) click below to verify authentication. You may debug CORS further using the `@superset-ui/connection` story.

-
diff --git a/packages/superset-ui-demo/storybook/stories/index.js b/packages/superset-ui-demo/storybook/stories/index.js new file mode 100644 index 0000000000..279d37e93a --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/index.js @@ -0,0 +1,43 @@ +import { setAddon, storiesOf } from '@storybook/react'; +import { withKnobs } from '@storybook/addon-knobs'; +import JSXAddon from 'storybook-addon-jsx'; +import 'bootstrap/dist/css/bootstrap.min.css'; + +setAddon(JSXAddon); + +const EMPTY_EXAMPLES = [ + { + renderStory: () => 'Does your default export have an `examples` key?', + storyName: 'No examples found', + }, +]; + +/* + * Below we crawl the dir + subdirs looking for index files of stories + * Each index is expected to have a default export with examples key containing + * an array of examples. Each example should have the shape: + * { storyPath: string, storyName: string, renderStory: fn() => node } + * + */ +const requireContext = require.context('./', /* subdirs= */ true, /index\.(j|t)sx?$/); + +requireContext.keys().forEach(packageName => { + const packageExport = requireContext(packageName); + if (packageExport && packageExport.default && !Array.isArray(packageExport.default)) { + const { examples = EMPTY_EXAMPLES } = packageExport.default; + + examples.forEach(example => { + const { + storyPath = 'Missing story path', + storyName = 'Missing name', + renderStory = () => 'Missing `renderStory`', + options = {}, + } = example; + + storiesOf(storyPath, module) + .addParameters({ options }) + .addDecorator(withKnobs({ escapeHTML: false })) + .addWithJSX(storyName, renderStory); + }); + } +}); diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx b/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx new file mode 100644 index 0000000000..e9d388459d --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx @@ -0,0 +1,100 @@ +import React from 'react'; +import { text, select } from '@storybook/addon-knobs'; + +import { SuperChart, ChartDataProvider } from '@superset-ui/chart'; +import { SupersetClient } from '@superset-ui/connection'; +import { BigNumberChartPlugin as LegacyBigNumberPlugin } from '@superset-ui/legacy-preset-chart-big-number'; +import LegacySankeyPlugin from '@superset-ui/legacy-plugin-chart-sankey'; +import LegacySunburstPlugin from '@superset-ui/legacy-plugin-chart-sunburst'; +import LegacyWordCloudPlugin from '@superset-ui/legacy-plugin-chart-word-cloud'; +import WordCloudPlugin from '@superset-ui/plugin-chart-word-cloud'; + +import { + bigNumberFormData, + sankeyFormData, + sunburstFormData, + wordCloudFormData, +} from '@superset-ui/chart/test/fixtures/formData'; + +import Expandable from '../../shared/components/Expandable'; +import VerifyCORS, { renderError } from '../../shared/components/VerifyCORS'; + +const BIG_NUMBER = bigNumberFormData.viz_type; +const SANKEY = sankeyFormData.viz_type; +const SUNBURST = sunburstFormData.viz_type; +const WORD_CLOUD_LEGACY = wordCloudFormData.viz_type; +const WORD_CLOUD = 'new_word_cloud'; + +new LegacyBigNumberPlugin().configure({ key: BIG_NUMBER }).register(); +// @ts-ignore +new LegacySankeyPlugin().configure({ key: SANKEY }).register(); +// @ts-ignore +new LegacySunburstPlugin().configure({ key: SUNBURST }).register(); +// @ts-ignore +new LegacyWordCloudPlugin().configure({ key: WORD_CLOUD_LEGACY }).register(); +// @ts-ignore +new WordCloudPlugin().configure({ key: WORD_CLOUD }).register(); + +const VIS_TYPES = [BIG_NUMBER, SANKEY, SUNBURST, WORD_CLOUD, WORD_CLOUD_LEGACY]; +const FORM_DATA_LOOKUP = { + [BIG_NUMBER]: bigNumberFormData, + [SANKEY]: sankeyFormData, + [SUNBURST]: sunburstFormData, + [WORD_CLOUD]: { ...wordCloudFormData, viz_type: WORD_CLOUD }, + [WORD_CLOUD_LEGACY]: wordCloudFormData, +}; + +export default [ + { + renderStory: () => { + const host = text('Set Superset App host for CORS request', 'localhost:9000'); + const visType = select('Chart Plugin Type', VIS_TYPES, VIS_TYPES[0]); + const formData = text('Override formData', JSON.stringify(FORM_DATA_LOOKUP[visType])); + const width = text('Vis width', '500'); + const height = text('Vis height', '300'); + + return ( +
+ + {() => ( + + {({ loading, payload, error }) => { + if (loading) return
Loading!
; + + if (error) return renderError(error); + + if (payload) + return ( + <> + +
+ +
{JSON.stringify(payload, null, 2)}
+
+ + ); + + return null; + }} +
+ )} +
+
+ ); + }, + storyName: 'ChartDataProvider', + storyPath: '@superset-ui/chart', + }, +]; diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx b/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx new file mode 100644 index 0000000000..f496c09d40 --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx @@ -0,0 +1,173 @@ +import React from 'react'; +import { text } from '@storybook/addon-knobs'; +import { SuperChart } from '../../../../superset-ui-chart/src'; +import { + DiligentChartPlugin, + BuggyChartPlugin, + ChartKeys, +} from '../../../../superset-ui-chart/test/components/MockChartPlugins'; + +new DiligentChartPlugin().configure({ key: ChartKeys.DILIGENT }).register(); +new BuggyChartPlugin().configure({ key: ChartKeys.BUGGY }).register(); + +const DEFAULT_QUERY_DATA = { data: ['foo', 'bar'] }; + +export default [ + { + renderStory: () => { + const width = text('Vis width', '100%'); + const height = text('Vis height', '100%'); + + return ( + + ); + }, + storyName: 'Basic', + storyPath: '@superset-ui/chart|SuperChart', + }, + { + renderStory: () => { + const width = text('Vis width', '50%'); + const height = text('Vis height', '50%'); + + return ( + + ); + }, + storyName: '50% of container', + storyPath: '@superset-ui/chart|SuperChart', + }, + { + renderStory: () => { + const width = text('Vis width', '500'); + const height = text('Vis height', '300'); + + return ( + + ); + }, + storyName: 'fixed dimension', + storyPath: '@superset-ui/chart|SuperChart', + }, + { + renderStory: () => { + const width = text('Vis width', '500'); + const height = text('Vis height', '100%'); + + return ( + + ); + }, + storyName: 'fixed width, 100% height', + storyPath: '@superset-ui/chart|SuperChart', + }, + { + renderStory: () => { + const width = text('Vis width', '100%'); + const height = text('Vis height', '300'); + + return ( + + ); + }, + storyName: 'fixed height, 100% width', + storyPath: '@superset-ui/chart|SuperChart', + }, + { + renderStory: () => { + const width = text('Vis width', '500'); + const height = text('Vis height', '300'); + + return ( + + ); + }, + storyName: 'With error boundary', + storyPath: '@superset-ui/chart|SuperChart', + }, + { + renderStory: () => { + const width = text('Vis width', '100%'); + const height = text('Vis height', '100%'); + + return ( + ( +
+
With wrapper!
+ {children} +
+ )} + /> + ); + }, + storyName: 'With Wrapper', + storyPath: '@superset-ui/chart|SuperChart', + }, + { + renderStory: () => { + const width = text('Vis width', '100%'); + const height = text('Vis height', '100%'); + + return ; + }, + storyName: 'With no results', + storyPath: '@superset-ui/chart|SuperChart', + }, + { + renderStory: () => { + const width = text('Vis width', '400'); + const height = text('Vis height', '300'); + + return ; + }, + storyName: 'With no results and medium', + storyPath: '@superset-ui/chart|SuperChart', + }, + { + renderStory: () => { + const width = text('Vis width', '150'); + const height = text('Vis height', '200'); + + return ; + }, + storyName: 'With no results and small', + storyPath: '@superset-ui/chart|SuperChart', + }, +]; diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-chart/index.ts b/packages/superset-ui-demo/storybook/stories/superset-ui-chart/index.ts new file mode 100644 index 0000000000..917c2b123c --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-chart/index.ts @@ -0,0 +1,6 @@ +import ChartDataProviderStories from './ChartDataProviderStories'; +import SuperChartStories from './SuperChartStories'; + +export default { + examples: [...ChartDataProviderStories, ...SuperChartStories], +}; diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-color/CategoricalStories.jsx b/packages/superset-ui-demo/storybook/stories/superset-ui-color/CategoricalStories.jsx new file mode 100644 index 0000000000..3300c2042d --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-color/CategoricalStories.jsx @@ -0,0 +1,23 @@ +import React from 'react'; + +import AirbnbPalettes from '@superset-ui/color/lib/colorSchemes/categorical/airbnb'; +import D3Palettes from '@superset-ui/color/lib/colorSchemes/categorical/d3'; +import GooglePalettes from '@superset-ui/color/lib/colorSchemes/categorical/google'; +import LyftPalettes from '@superset-ui/color/lib/colorSchemes/categorical/lyft'; +import RenderPalettes from './RenderPalettes'; + +export default [ + { + renderStory: () => + [ + { palettes: AirbnbPalettes, storyName: 'Airbnb' }, + { palettes: D3Palettes, storyName: 'd3' }, + { palettes: GooglePalettes, storyName: 'Google' }, + { palettes: LyftPalettes, storyName: 'Lyft' }, + ].map(({ palettes, storyName }) => ( + + )), + storyName: 'Categorical Palettes', + storyPath: '@superset-ui/color', + }, +]; diff --git a/packages/demo/storybook/stories/superset-ui-color/RenderPalettes.jsx b/packages/superset-ui-demo/storybook/stories/superset-ui-color/RenderPalettes.jsx similarity index 97% rename from packages/demo/storybook/stories/superset-ui-color/RenderPalettes.jsx rename to packages/superset-ui-demo/storybook/stories/superset-ui-color/RenderPalettes.jsx index 294bf9074b..b06a30967e 100644 --- a/packages/demo/storybook/stories/superset-ui-color/RenderPalettes.jsx +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-color/RenderPalettes.jsx @@ -1,6 +1,5 @@ /* eslint react/prop-types: 'off' */ import React from 'react'; -import './color-styles.css'; export default function RenderPalettes({ title, palettes }) { return ( diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-color/SequentialStories.jsx b/packages/superset-ui-demo/storybook/stories/superset-ui-color/SequentialStories.jsx new file mode 100644 index 0000000000..e2d0803167 --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-color/SequentialStories.jsx @@ -0,0 +1,19 @@ +import React from 'react'; + +import CommonPalettes from '@superset-ui/color/lib/colorSchemes/sequential/common'; +import D3Palettes from '@superset-ui/color/lib/colorSchemes/sequential/d3'; +import RenderPalettes from './RenderPalettes'; + +export default [ + { + renderStory: () => + [ + { palettes: CommonPalettes, storyName: 'Common' }, + { palettes: D3Palettes, storyName: 'd3' }, + ].map(({ palettes, storyName }) => ( + + )), + storyName: 'Sequential Palettes', + storyPath: '@superset-ui/color', + }, +]; diff --git a/packages/demo/storybook/stories/superset-ui-color/color-styles.css b/packages/superset-ui-demo/storybook/stories/superset-ui-color/color-styles.css similarity index 100% rename from packages/demo/storybook/stories/superset-ui-color/color-styles.css rename to packages/superset-ui-demo/storybook/stories/superset-ui-color/color-styles.css diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-color/index.js b/packages/superset-ui-demo/storybook/stories/superset-ui-color/index.js new file mode 100644 index 0000000000..12f7069f82 --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-color/index.js @@ -0,0 +1,7 @@ +import CategoricalStories from './CategoricalStories'; +import SequentialStories from './SequentialStories'; +import './color-styles.css'; + +export default { + examples: [...CategoricalStories, ...SequentialStories], +}; diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-connection/ConnectionStories.jsx b/packages/superset-ui-demo/storybook/stories/superset-ui-connection/ConnectionStories.jsx new file mode 100644 index 0000000000..9cbaa8fca0 --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-connection/ConnectionStories.jsx @@ -0,0 +1,46 @@ +import React from 'react'; +import { select, text } from '@storybook/addon-knobs'; + +import VerifyCORS from '../../shared/components/VerifyCORS'; +import Expandable from '../../shared/components/Expandable'; +import { bigNumberFormData } from '../../../../superset-ui-chart/test/fixtures/formData'; + +const REQUEST_METHODS = ['GET', 'POST']; + +export default [ + { + renderStory: () => { + const host = text('Superset App host for CORS request', 'localhost:9000'); + const endpoint = text('Endpoint to test (blank to test auth only)', undefined); + const method = endpoint ? select('Request method', REQUEST_METHODS, 'POST') : undefined; + const postPayload = + endpoint && method === 'POST' + ? text('Optional POST payload', JSON.stringify({ form_data: bigNumberFormData })) + : undefined; + + return ( +
+ + {({ payload }) => ( + <> +
Success! Update knobs below to try again
+
+ +
+
{JSON.stringify(payload, null, 2)}
+
+ + )} +
+
+ ); + }, + storyName: 'Configure CORS', + storyPath: '@superset-ui/connection', + }, +]; diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-connection/index.js b/packages/superset-ui-demo/storybook/stories/superset-ui-connection/index.js new file mode 100644 index 0000000000..ad530c0e37 --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-connection/index.js @@ -0,0 +1,5 @@ +import ConnectionStories from './ConnectionStories'; + +export default { + examples: [...ConnectionStories], +}; diff --git a/packages/demo/storybook/stories/superset-ui-number-format/BigNumberStories.jsx b/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/Stories.jsx similarity index 94% rename from packages/demo/storybook/stories/superset-ui-number-format/BigNumberStories.jsx rename to packages/superset-ui-demo/storybook/stories/superset-ui-number-format/Stories.jsx index 039a4de8fe..3f04339a35 100644 --- a/packages/demo/storybook/stories/superset-ui-number-format/BigNumberStories.jsx +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/Stories.jsx @@ -93,7 +93,7 @@ class NumberFormatValidator extends React.PureComponent { - {testValues.map((v) => ( + {testValues.map(v => ( {`${v}`} @@ -115,8 +115,10 @@ class NumberFormatValidator extends React.PureComponent { NumberFormatValidator.propTypes = propTypes; NumberFormatValidator.defaultProps = defaultProps; -export default { - title: 'Core Packages|@superset-ui/number-format', -}; - -export const validator = () => ; +export default [ + { + renderStory: () => , + storyName: 'Validator', + storyPath: '@superset-ui/number-format', + }, +]; diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/index.js b/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/index.js new file mode 100644 index 0000000000..f36baefa28 --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/index.js @@ -0,0 +1,5 @@ +import Stories from './Stories'; + +export default { + examples: [...Stories], +}; diff --git a/packages/demo/storybook/stories/superset-ui-time-format/TimeFormatStories.jsx b/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/Stories.jsx similarity index 94% rename from packages/demo/storybook/stories/superset-ui-time-format/TimeFormatStories.jsx rename to packages/superset-ui-demo/storybook/stories/superset-ui-time-format/Stories.jsx index 35d139bd20..c46c9cbb2d 100644 --- a/packages/demo/storybook/stories/superset-ui-time-format/TimeFormatStories.jsx +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/Stories.jsx @@ -82,7 +82,7 @@ class TimeFormatValidator extends React.PureComponent { - {testValues.map((v) => ( + {testValues.map(v => ( {v instanceof Date ? v.toUTCString() : `${v}`} @@ -104,8 +104,10 @@ class TimeFormatValidator extends React.PureComponent { TimeFormatValidator.propTypes = propTypes; TimeFormatValidator.defaultProps = defaultProps; -export default { - title: 'Core Packages|@superset-ui/time-format', -}; - -export const validator = () => ; +export default [ + { + renderStory: () => , + storyName: 'Validator', + storyPath: '@superset-ui/time-format', + }, +]; diff --git a/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/index.js b/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/index.js new file mode 100644 index 0000000000..f36baefa28 --- /dev/null +++ b/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/index.js @@ -0,0 +1,5 @@ +import Stories from './Stories'; + +export default { + examples: [...Stories], +}; diff --git a/packages/superset-ui-demo/types/external.d.ts b/packages/superset-ui-demo/types/external.d.ts new file mode 100644 index 0000000000..755be2d53c --- /dev/null +++ b/packages/superset-ui-demo/types/external.d.ts @@ -0,0 +1,4 @@ +declare module '@superset-ui/legacy-preset-chart-big-number'; +declare module '@superset-ui/legacy-plugin-chart-sankey'; +declare module '@superset-ui/legacy-plugin-chart-sunburst'; +declare module '@superset-ui/legacy-plugin-chart-word-cloud'; diff --git a/packages/superset-ui-dimension/test/mergeMargin.test.ts b/packages/superset-ui-dimension/test/mergeMargin.test.ts index 3aa7a59a70..f061cedcd7 100644 --- a/packages/superset-ui-dimension/test/mergeMargin.test.ts +++ b/packages/superset-ui-dimension/test/mergeMargin.test.ts @@ -166,9 +166,9 @@ describe('mergeMargin(margin1, margin2, mode?)', () => { it('if there are NaN or null, use another value', () => { expect( mergeMargin( + // @ts-ignore to let us pass `null` for testing { top: 10, - // @ts-ignore to let us pass `null` for testing left: null, bottom: 20, right: NaN, diff --git a/packages/superset-ui-number-format/src/factories/createSmartNumberFormatter.ts b/packages/superset-ui-number-format/src/factories/createSmartNumberFormatter.ts index 4b5765596e..c9993fb2a5 100644 --- a/packages/superset-ui-number-format/src/factories/createSmartNumberFormatter.ts +++ b/packages/superset-ui-number-format/src/factories/createSmartNumberFormatter.ts @@ -6,28 +6,6 @@ const siFormatter = d3Format(`.3~s`); const float2PointFormatter = d3Format(`.2~f`); const float4PointFormatter = d3Format(`.4~f`); -function formatValue(value: number) { - if (value === 0) { - return '0'; - } - const absoluteValue = Math.abs(value); - if (absoluteValue >= 1000) { - // Normal human being are more familiar - // with billion (B) that giga (G) - return siFormatter(value).replace('G', 'B'); - } - if (absoluteValue >= 1) { - return float2PointFormatter(value); - } - if (absoluteValue >= 0.001) { - return float4PointFormatter(value); - } - if (absoluteValue > 0.000001) { - return `${siFormatter(value * 1000000)}µ`; - } - return siFormatter(value); -} - export default function createSmartNumberFormatter( config: { description?: string; @@ -39,6 +17,29 @@ export default function createSmartNumberFormatter( const { description, signed = false, id, label } = config; const getSign = signed ? (value: number) => (value > 0 ? '+' : '') : () => ''; + function formatValue(value: number) { + if (value === 0) { + return '0'; + } + const absoluteValue = Math.abs(value); + if (absoluteValue >= 1000) { + // Normal human being are more familiar + // with billion (B) that giga (G) + return siFormatter(value).replace('G', 'B'); + } + if (absoluteValue >= 1) { + return float2PointFormatter(value); + } + if (absoluteValue >= 0.001) { + return float4PointFormatter(value); + } + if (absoluteValue > 0.000001) { + return `${siFormatter(value * 1000000)}µ`; + } + + return siFormatter(value); + } + return new NumberFormatter({ description, formatFunc: value => `${getSign(value)}${formatValue(value)}`, diff --git a/plugins/big-number/README.md b/plugins/big-number/README.md deleted file mode 100644 index 9709f768d4..0000000000 --- a/plugins/big-number/README.md +++ /dev/null @@ -1,43 +0,0 @@ -## @superset-ui/legacy-preset-chart-big-number - -[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-big-number.svg?style=flat-square)](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-big-number.svg?style=flat-square) -[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-preset-chart-big-number&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=plugins/superset-ui-legacy-preset-chart-big-number) - -This plugin provides Big Number for Superset. - -### Usage - -Import the preset and register. This will register the `BigNumber` and `BigNumberTotal` charts with key `big-number` and `big-number-total`, respectively. - -```js -import { BigNumberChartPreset } from '@superset-ui/legacy-preset-chart-big-number'; - -new BigNumberChartPreset().register(); -``` - -or register charts one by one. Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to lookup this chart throughout the app. - -```js -import { BigNumberChartPlugin, BigNumberTotalChartPlugin } from '@superset-ui/legacy-preset-chart-big-number'; - -new BigNumberChartPlugin() - .configure({ key: 'big-number' }) - .register(); -new BigNumberTotalChartPlugin() - .configure({ key: 'big-number-total' }) - .register(); -``` - -Then use it via `SuperChart`. See [storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-big-number) for more details. - -```js - -``` \ No newline at end of file diff --git a/plugins/big-number/package.json b/plugins/big-number/package.json deleted file mode 100644 index d58514957e..0000000000 --- a/plugins/big-number/package.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "name": "@superset-ui/legacy-preset-chart-big-number", - "version": "0.11.21", - "description": "Superset Legacy Chart - Big Number", - "sideEffects": [ - "*.css" - ], - "main": "lib/index.js", - "module": "esm/index.js", - "files": [ - "esm", - "lib" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui-plugins.git" - }, - "keywords": [ - "superset" - ], - "author": "Superset", - "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/apache-superset/superset-ui-plugins/issues" - }, - "homepage": "https://github.com/apache-superset/superset-ui-plugins#readme", - "publishConfig": { - "access": "public" - }, - "dependencies": { - "@data-ui/xy-chart": "^0.0.84", - "@types/d3-color": "^1.2.2", - "@types/shortid": "^0.0.29", - "d3-color": "^1.2.3", - "shortid": "^2.2.14" - }, - "peerDependencies": { - "@superset-ui/chart": "^0.12.0", - "@superset-ui/color": "^0.12.0", - "@superset-ui/core": "^0.12.0", - "@superset-ui/dimension": "^0.12.0", - "@superset-ui/number-format": "^0.12.0", - "@superset-ui/time-format": "^0.12.0", - "@superset-ui/translation": "^0.12.0", - "react": "^15 || ^16" - } -} diff --git a/plugins/big-number/src/BigNumber/BigNumber.css b/plugins/big-number/src/BigNumber/BigNumber.css deleted file mode 100644 index e3f17266e6..0000000000 --- a/plugins/big-number/src/BigNumber/BigNumber.css +++ /dev/null @@ -1,72 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -.superset-legacy-chart-big-number { - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, - Open Sans, Helvetica Neue, sans-serif; - position: relative; - display: flex; - flex-direction: column; - justify-content: center; -} - -.superset-legacy-chart-big-number.no-trendline .subheader-line { - padding-bottom: 0.3em; -} - -.superset-legacy-chart-big-number .text-container { - display: flex; - flex-direction: column; - justify-content: center; - align-items: flex-start; -} - -.superset-legacy-chart-big-number .text-container .alert { - font-size: 11px; - margin: -0.5em 0 0.4em; - line-height: 1; - padding: 2px 4px 3px; - border-radius: 3px; -} - -.superset-legacy-chart-big-number .header-line { - position: relative; - line-height: 1em; - font-weight: 600; -} - -.superset-legacy-chart-big-number .header-line span { - position: absolute; - bottom: 0; -} - -.superset-legacy-chart-big-number .subheader-line { - line-height: 1em; - padding-bottom: 0; - font-weight: 200; -} - -.superset-legacy-chart-big-number.is-fallback-value .header-line, -.superset-legacy-chart-big-number.is-fallback-value .subheader-line { - opacity: 0.5; -} - -.superset-data-ui-tooltip { - z-index: 1000; - background: #000; -} diff --git a/plugins/big-number/src/BigNumber/BigNumber.tsx b/plugins/big-number/src/BigNumber/BigNumber.tsx deleted file mode 100644 index 03b5dc0b94..0000000000 --- a/plugins/big-number/src/BigNumber/BigNumber.tsx +++ /dev/null @@ -1,305 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import React from 'react'; -import shortid from 'shortid'; -import { t } from '@superset-ui/translation'; -import { getNumberFormatter } from '@superset-ui/number-format'; -import { XYChart, AreaSeries, CrossHair, LinearGradient } from '@data-ui/xy-chart'; -import { BRAND_COLOR } from '@superset-ui/color'; -import { computeMaxFontSize } from '@superset-ui/dimension'; -import NumberFormatter from '@superset-ui/number-format/src/NumberFormatter'; -import { smartDateVerboseFormatter } from '@superset-ui/time-format'; -import TimeFormatter from '@superset-ui/time-format/src/TimeFormatter'; - -import './BigNumber.css'; - -const defaultNumberFormatter = getNumberFormatter(); - -const CHART_MARGIN = { - top: 4, - right: 4, - bottom: 4, - left: 4, -}; - -const PROPORTION = { - // text size: proportion of the chart container sans trendline - HEADER: 0.3, - SUBHEADER: 0.125, - // trendline size: proportion of the whole chart container - TRENDLINE: 0.3, -}; - -type TimeSeriesDatum = { - x: number; // timestamp as a number - y: number | null; -}; - -export function renderTooltipFactory( - formatDate = smartDateVerboseFormatter, - formatValue = defaultNumberFormatter, -) { - return function renderTooltip({ datum: { x, y } }: { datum: TimeSeriesDatum }) { - // even though `formatDate` supports timestamp as numbers, we need - // `new Date` to pass type check - return ( -
- {formatDate(new Date(x))} -
- {y === null ? t('N/A') : formatValue(y)} -
- ); - }; -} - -type BigNumberVisProps = { - className?: string; - width: number; - height: number; - bigNumber?: number | null; - bigNumberFallback?: TimeSeriesDatum; - formatNumber: NumberFormatter; - formatTime: TimeFormatter; - fromDatetime?: number; - toDatetime?: number; - headerFontSize: number; - subheader: string; - subheaderFontSize: number; - showTrendLine?: boolean; - startYAxisAtZero?: boolean; - timeRangeFixed?: boolean; - trendLineData?: TimeSeriesDatum[]; - mainColor: string; -}; - -class BigNumberVis extends React.PureComponent { - private gradientId: string = shortid.generate(); - - static defaultProps = { - className: '', - formatNumber: (num: number) => String(num), - formatTime: smartDateVerboseFormatter.formatFunc, - headerFontSize: PROPORTION.HEADER, - mainColor: BRAND_COLOR, - showTrendLine: false, - startYAxisAtZero: true, - subheader: '', - subheaderFontSize: PROPORTION.SUBHEADER, - timeRangeFixed: false, - }; - - getClassName() { - const { className, showTrendLine, bigNumberFallback } = this.props; - const names = `superset-legacy-chart-big-number ${className} ${ - bigNumberFallback ? 'is-fallback-value' : '' - }`; - if (showTrendLine) return names; - return `${names} no-trendline`; - } - - createTemporaryContainer() { - const container = document.createElement('div'); - container.className = this.getClassName(); - container.style.position = 'absolute'; // so it won't disrupt page layout - container.style.opacity = '0'; // and not visible - return container; - } - - renderFallbackWarning() { - const { bigNumberFallback, formatTime } = this.props; - if (!bigNumberFallback) return null; - return ( - - {t('Not up to date')} - - ); - } - - renderHeader(maxHeight: number) { - const { bigNumber, formatNumber, width } = this.props; - const text = bigNumber === null ? t('No data') : formatNumber(bigNumber); - - const container = this.createTemporaryContainer(); - document.body.append(container); - const fontSize = computeMaxFontSize({ - text, - maxWidth: width, - maxHeight, - className: 'header-line', - container, - }); - container.remove(); - - return ( -
- {text} -
- ); - } - - renderSubheader(maxHeight: number) { - const { bigNumber, subheader, width, bigNumberFallback } = this.props; - let fontSize = 0; - - const NO_DATA_OR_HASNT_LANDED = t( - 'No data after filtering or data is NULL for the latest time record', - ); - const NO_DATA = t('Try applying different filters or ensuring your datasource has data'); - let text = subheader; - if (bigNumber === null) { - text = bigNumberFallback ? NO_DATA : NO_DATA_OR_HASNT_LANDED; - } - if (text) { - const container = this.createTemporaryContainer(); - document.body.append(container); - fontSize = computeMaxFontSize({ - text, - maxWidth: width, - maxHeight, - className: 'subheader-line', - container, - }); - container.remove(); - - return ( -
- {text} -
- ); - } - return null; - } - - renderTrendline(maxHeight: number) { - const { - width, - trendLineData, - mainColor, - subheader, - startYAxisAtZero, - formatNumber, - formatTime, - fromDatetime, - timeRangeFixed, - } = this.props; - - // if can't find any non-null values, no point rendering the trendline - if (!trendLineData?.some(d => d.y !== null)) { - return null; - } - - // Apply a fixed X range if a time range is specified. - // - // XYChart checks the existence of `domain` property and decide whether to - // apply a domain or not, so it must not be `null` or `undefined` - const xScale: { type: string; domain?: number[] } = { type: 'timeUtc' }; - const tooltipData = trendLineData && [...trendLineData]; - if (tooltipData && timeRangeFixed && fromDatetime) { - const toDatetime = this.props.toDatetime ?? Date.now(); - if (tooltipData[0].x > fromDatetime) { - tooltipData.unshift({ - x: fromDatetime, - y: null, - }); - } - if (tooltipData[tooltipData.length - 1].x < toDatetime) { - tooltipData.push({ - x: toDatetime, - y: null, - }); - } - xScale.domain = [fromDatetime, toDatetime]; - } - return ( - - - - - - ); - } - - render() { - const { showTrendLine, height, headerFontSize, subheaderFontSize } = this.props; - const className = this.getClassName(); - - if (showTrendLine) { - const chartHeight = Math.floor(PROPORTION.TRENDLINE * height); - const allTextHeight = height - chartHeight; - - return ( -
-
- {this.renderFallbackWarning()} - {this.renderHeader(Math.ceil(headerFontSize * (1 - PROPORTION.TRENDLINE) * height))} - {this.renderSubheader( - Math.ceil(subheaderFontSize * (1 - PROPORTION.TRENDLINE) * height), - )} -
- {this.renderTrendline(chartHeight)} -
- ); - } - - return ( -
- {this.renderHeader(Math.ceil(headerFontSize * height))} - {this.renderSubheader(Math.ceil(subheaderFontSize * height))} -
- ); - } -} - -export default BigNumberVis; diff --git a/plugins/big-number/src/BigNumber/images/thumbnail.png b/plugins/big-number/src/BigNumber/images/thumbnail.png deleted file mode 100644 index 90ac5a5b12..0000000000 Binary files a/plugins/big-number/src/BigNumber/images/thumbnail.png and /dev/null differ diff --git a/plugins/big-number/src/BigNumber/images/thumbnailLarge.png b/plugins/big-number/src/BigNumber/images/thumbnailLarge.png deleted file mode 100644 index 2420f25e9f..0000000000 Binary files a/plugins/big-number/src/BigNumber/images/thumbnailLarge.png and /dev/null differ diff --git a/plugins/big-number/src/BigNumber/index.ts b/plugins/big-number/src/BigNumber/index.ts deleted file mode 100644 index 4125796ad7..0000000000 --- a/plugins/big-number/src/BigNumber/index.ts +++ /dev/null @@ -1,39 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { t } from '@superset-ui/translation'; -import { ChartMetadata, ChartPlugin } from '@superset-ui/chart'; -import transformProps from './transformProps'; -import thumbnail from './images/thumbnail.png'; - -const metadata = new ChartMetadata({ - description: '', - name: t('Big Number with Trendline'), - thumbnail, - useLegacyApi: true, -}); - -export default class BigNumberChartPlugin extends ChartPlugin { - constructor() { - super({ - loadChart: () => import('./BigNumber'), - metadata, - transformProps, - }); - } -} diff --git a/plugins/big-number/src/BigNumber/transformProps.ts b/plugins/big-number/src/BigNumber/transformProps.ts deleted file mode 100644 index 4115d58cfd..0000000000 --- a/plugins/big-number/src/BigNumber/transformProps.ts +++ /dev/null @@ -1,138 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import * as color from 'd3-color'; -import { getNumberFormatter, NumberFormats } from '@superset-ui/number-format'; -import { ChartProps } from '@superset-ui/chart'; -import getTimeFormatterForGranularity from '../utils/getTimeFormatterForGranularity'; - -const TIME_COLUMN = '__timestamp'; -const formatPercentChange = getNumberFormatter(NumberFormats.PERCENT_SIGNED_1_POINT); - -// we trust both the x (time) and y (big number) to be numeric -type BigNumberDatum = { - [TIME_COLUMN]: number; - [key: string]: number | null; -}; - -export default function transformProps(chartProps: ChartProps) { - const { width, height, formData, queryData } = chartProps; - const { - colorPicker, - compareLag: compareLagInput, - compareSuffix = '', - headerFontSize, - metric, - showTrendLine, - startYAxisAtZero, - subheader = '', - subheaderFontSize, - timeGrainSqla: granularity, - vizType, - timeRangeFixed = false, - } = formData; - let { yAxisFormat } = formData; - const { data, from_dttm: fromDatetime, to_dttm: toDatetime } = queryData; - const metricName = metric?.label ? metric.label : metric; - const compareLag = Number(compareLagInput) || 0; - const supportTrendLine = vizType === 'big_number'; - const supportAndShowTrendLine = supportTrendLine && showTrendLine; - let formattedSubheader = subheader; - - let mainColor; - if (colorPicker) { - const { r, g, b } = colorPicker; - mainColor = color.rgb(r, g, b).hex(); - } - - let trendLineData; - let percentChange = 0; - let bigNumber = data.length === 0 ? null : data[0][metricName]; - let bigNumberFallback; - - if (data.length > 0) { - const sortedData = (data as BigNumberDatum[]) - .map(d => ({ x: d[TIME_COLUMN], y: d[metricName] })) - .sort((a, b) => b.x - a.x); // sort in time descending order - - bigNumber = sortedData[0].y; - if (bigNumber === null) { - bigNumberFallback = sortedData.find(d => d.y !== null); - bigNumber = bigNumberFallback ? bigNumberFallback.y : null; - } - - if (compareLag > 0) { - const compareIndex = compareLag; - if (compareIndex < sortedData.length) { - const compareValue = sortedData[compareIndex].y; - // compare values must both be non-nulls - if (bigNumber !== null && compareValue !== null && compareValue !== 0) { - percentChange = (bigNumber - compareValue) / Math.abs(compareValue); - formattedSubheader = `${formatPercentChange(percentChange)} ${compareSuffix}`; - } - } - } - - if (supportTrendLine) { - // must reverse to ascending order otherwise it confuses tooltip triggers - sortedData.reverse(); - trendLineData = supportAndShowTrendLine ? sortedData : undefined; - } - } - - let className = ''; - if (percentChange > 0) { - className = 'positive'; - } else if (percentChange < 0) { - className = 'negative'; - } - - if (!yAxisFormat && chartProps.datasource && chartProps.datasource.metrics) { - chartProps.datasource.metrics.forEach( - // eslint-disable-next-line camelcase - (metricEntry: { metric_name?: string; d3format: string }) => { - if (metricEntry.metric_name === metric && metricEntry.d3format) { - yAxisFormat = metricEntry.d3format; - } - }, - ); - } - - const formatNumber = getNumberFormatter(yAxisFormat); - const formatTime = getTimeFormatterForGranularity(granularity); - - return { - width, - height, - bigNumber, - bigNumberFallback, - className, - formatNumber, - formatTime, - headerFontSize, - subheaderFontSize, - mainColor, - showTrendLine: supportAndShowTrendLine, - startYAxisAtZero, - subheader: formattedSubheader, - trendLineData, - fromDatetime, - toDatetime, - timeRangeFixed, - }; -} diff --git a/plugins/big-number/src/BigNumberTotal/images/thumbnail.png b/plugins/big-number/src/BigNumberTotal/images/thumbnail.png deleted file mode 100644 index 350d5a1ab1..0000000000 Binary files a/plugins/big-number/src/BigNumberTotal/images/thumbnail.png and /dev/null differ diff --git a/plugins/big-number/src/BigNumberTotal/images/thumbnailLarge.png b/plugins/big-number/src/BigNumberTotal/images/thumbnailLarge.png deleted file mode 100644 index eb4b345731..0000000000 Binary files a/plugins/big-number/src/BigNumberTotal/images/thumbnailLarge.png and /dev/null differ diff --git a/plugins/big-number/src/BigNumberTotal/index.ts b/plugins/big-number/src/BigNumberTotal/index.ts deleted file mode 100644 index 34af27e7a2..0000000000 --- a/plugins/big-number/src/BigNumberTotal/index.ts +++ /dev/null @@ -1,39 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { t } from '@superset-ui/translation'; -import { ChartMetadata, ChartPlugin } from '@superset-ui/chart'; -import transformProps from '../BigNumber/transformProps'; -import thumbnail from './images/thumbnail.png'; - -const metadata = new ChartMetadata({ - description: '', - name: t('Big Number'), - thumbnail, - useLegacyApi: true, -}); - -export default class BigNumberTotalChartPlugin extends ChartPlugin { - constructor() { - super({ - loadChart: () => import('../BigNumber/BigNumber'), - metadata, - transformProps, - }); - } -} diff --git a/plugins/big-number/src/index.ts b/plugins/big-number/src/index.ts deleted file mode 100644 index 5110f67cc9..0000000000 --- a/plugins/big-number/src/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export { default as BigNumberChartPlugin } from './BigNumber/index'; -export { default as BigNumberTotalChartPlugin } from './BigNumberTotal/index'; -export { default as BigNumberChartPreset } from './preset'; diff --git a/plugins/big-number/src/preset.ts b/plugins/big-number/src/preset.ts deleted file mode 100644 index 6e330e49fb..0000000000 --- a/plugins/big-number/src/preset.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { Preset } from '@superset-ui/core'; -import BigNumberChartPlugin from './BigNumber'; -import BigNumberTotalChartPlugin from './BigNumberTotal'; - -export default class BigNumberChartPreset extends Preset { - constructor() { - super({ - name: 'BigNumber charts', - plugins: [ - new BigNumberChartPlugin().configure({ key: 'big_number' }), - new BigNumberTotalChartPlugin().configure({ key: 'big_number_total' }), - ], - }); - } -} diff --git a/plugins/big-number/src/tests/transformProps.test.ts b/plugins/big-number/src/tests/transformProps.test.ts deleted file mode 100644 index e185461026..0000000000 --- a/plugins/big-number/src/tests/transformProps.test.ts +++ /dev/null @@ -1,109 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import transformProps from '../BigNumber/transformProps'; - -const formData = { - metric: 'value', - colorPicker: { - r: 0, - g: 122, - b: 135, - a: 1, - }, - compareLag: 1, - timeGrainSqla: 'P0.25Y', - compareSuffix: 'over last quarter', - vizType: 'big_number', - yAxisFormat: '.3s', -}; - -function generateProps(data: object[], extraFormData = {}, extraQueryData = {}) { - return { - width: 200, - height: 500, - annotationData: {}, - datasource: { - columnFormats: {}, - verboseMap: {}, - }, - rawDatasource: {}, - rawFormData: {}, - hooks: {}, - initialValues: {}, - formData: { - ...formData, - ...extraFormData, - }, - queryData: { - data, - ...extraQueryData, - }, - }; -} - -describe('BigNumber', () => { - const props = generateProps( - [ - { - __timestamp: 0, - value: 1.2345, - }, - { - __timestamp: 100, - value: null, - }, - ], - { showTrendLine: true }, - ); - - describe('transformProps()', () => { - it('should fallback and format time', () => { - const transformed = transformProps(props); - // the first item is the last item sorted by __timestamp - const lastDatum = transformed.trendLineData?.pop(); - - // should use last available value - expect(lastDatum?.x).toStrictEqual(100); - expect(lastDatum?.y).toBeNull(); - - // should note this is a fallback - expect(transformed.bigNumber).toStrictEqual(1.2345); - expect(transformed.bigNumberFallback).not.toBeNull(); - - // should successfully formatTime by ganularity - expect(transformed.formatTime(new Date('2020-01-01'))).toStrictEqual('2020 Q1'); - }); - - it('should respect datasource d3 format', () => { - const propsWithDatasource = { - ...props, - datasource: { - metrics: [ - { - metric_name: 'value', - d3format: '.2f', - }, - ], - }, - }; - const transformed = transformProps(propsWithDatasource); - expect(transformed.formatNumber(transformed.bigNumber)).toStrictEqual('1.23'); - }); - }); -}); diff --git a/plugins/big-number/src/types/external.d.ts b/plugins/big-number/src/types/external.d.ts deleted file mode 100644 index e696397411..0000000000 --- a/plugins/big-number/src/types/external.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -declare module '@data-ui/xy-chart'; -declare module '*.png'; diff --git a/plugins/big-number/src/utils/getTimeFormatterForGranularity.ts b/plugins/big-number/src/utils/getTimeFormatterForGranularity.ts deleted file mode 100644 index 64fb580601..0000000000 --- a/plugins/big-number/src/utils/getTimeFormatterForGranularity.ts +++ /dev/null @@ -1,70 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { getTimeFormatter, TimeFormats, smartDateVerboseFormatter } from '@superset-ui/time-format'; - -// Translate time granularity to d3-format -const MINUTE = '%Y-%m-%d %H:%M'; -const SUNDAY_BASED_WEEK = '%Y W%U'; -const MONDAY_BASED_WEEK = '%Y W%W'; -const { DATABASE_DATE, DATABASE_DATETIME } = TimeFormats; - -// search for `builtin_time_grains` in incubator-superset/superset/db_engine_specs/base.py -const formats = { - date: DATABASE_DATE, - PT1S: DATABASE_DATETIME, // second - PT1M: MINUTE, // minute - PT5M: MINUTE, // 5 minute - PT10M: MINUTE, // 10 minute - PT15M: MINUTE, // 15 minute - 'PT0.5H': MINUTE, // half hour - PT1H: '%Y-%m-%d %H:00', // hour - P1D: DATABASE_DATE, // day - P1W: SUNDAY_BASED_WEEK, // week - P1M: '%Y-%m', // month - 'P0.25Y': '%Y Q%q', // quarter - P1Y: '%Y', // year - // d3-time-format weeks does not support weeks start on Sunday - '1969-12-28T00:00:00Z/P1W': SUNDAY_BASED_WEEK, // 'week_start_sunday' - '1969-12-29T00:00:00Z/P1W': MONDAY_BASED_WEEK, // 'week_start_monday' - 'P1W/1970-01-03T00:00:00Z': SUNDAY_BASED_WEEK, // 'week_ending_saturday' - 'P1W/1970-01-04T00:00:00Z': MONDAY_BASED_WEEK, // 'week_ending_sunday' -}; - -type TimeGranularity = - | 'date' - | 'PT1S' - | 'PT1M' - | 'PT5M' - | 'PT10M' - | 'PT15M' - | 'PT0.5H' - | 'PT1H' - | 'P1D' - | 'P1W' - | 'P0.25Y' - | 'P1Y' - | '1969-12-28T00:00:00Z/P1W' - | '1969-12-29T00:00:00Z/P1W' - | 'P1W/1970-01-03T00:00:00Z'; - -export default function getTimeFormatterForGranularity(granularity: TimeGranularity) { - return granularity in formats - ? getTimeFormatter(formats[granularity]) - : smartDateVerboseFormatter; -} diff --git a/plugins/table/README.md b/plugins/table/README.md deleted file mode 100644 index a000309d14..0000000000 --- a/plugins/table/README.md +++ /dev/null @@ -1,33 +0,0 @@ -## @superset-ui/legacy-plugin-chart-table - -[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-table.svg?style=flat-square)](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-table.svg?style=flat-square) -[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-table&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=plugins/superset-ui-legacy-plugin-chart-table) - -This plugin provides Table for Superset. - -### Usage - -Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to -lookup this chart throughout the app. - -```js -import TableChartPlugin from '@superset-ui/legacy-plugin-chart-table'; - -new TableChartPlugin().configure({ key: 'table' }).register(); -``` - -Then use it via `SuperChart`. See -[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-table) -for more details. - -```js - -``` diff --git a/plugins/table/package.json b/plugins/table/package.json deleted file mode 100644 index 2a2c8d53bf..0000000000 --- a/plugins/table/package.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "name": "@superset-ui/legacy-plugin-chart-table", - "version": "0.11.20", - "description": "Superset Legacy Chart - Table", - "sideEffects": [ - "*.css" - ], - "main": "lib/index.js", - "module": "esm/index.js", - "files": [ - "esm", - "lib" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui-plugins.git" - }, - "keywords": [ - "superset" - ], - "author": "Superset", - "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/apache-superset/superset-ui-plugins/issues" - }, - "homepage": "https://github.com/apache-superset/superset-ui-plugins#readme", - "publishConfig": { - "access": "public" - }, - "dependencies": { - "@types/react-dom": "^16.9.6", - "datatables.net-bs": "^1.10.20", - "xss": "^1.0.6" - }, - "devDependencies": { - "@types/datatables.net": "^1.10.18" - }, - "peerDependencies": { - "@superset-ui/chart": "^0.12.0", - "@superset-ui/number-format": "^0.12.10", - "@superset-ui/query": "^0.12.8", - "@superset-ui/time-format": "^0.12.0", - "@superset-ui/translation": "^0.12.0", - "jquery": "^3.4.1", - "react": "^16.8.0", - "react-dom": "^16.8.0" - } -} diff --git a/plugins/table/src/ReactDataTable.tsx b/plugins/table/src/ReactDataTable.tsx deleted file mode 100644 index 3da0b774cf..0000000000 --- a/plugins/table/src/ReactDataTable.tsx +++ /dev/null @@ -1,261 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { t } from '@superset-ui/translation'; -import React, { useEffect, createRef } from 'react'; -import ReactDOMServer from 'react-dom/server'; -import { formatNumber, NumberFormats } from '@superset-ui/number-format'; -import { getTimeFormatter } from '@superset-ui/time-format'; -import { filterXSS } from 'xss'; - -// initialize datatables.net -import $ from 'jquery'; -import dt from 'datatables.net-bs/js/dataTables.bootstrap'; -import 'datatables.net-bs/css/dataTables.bootstrap.css'; -import './Table.css'; - -import { DataTableProps } from './transformProps'; - -// Depending on how the modules are imported, `dt` may be a CommonJS init function, -// or the DataTable class itself. In case it is the former, we'd need to tell it -// where is jQuery. -if (!dt.$) { - dt(window, $); -} - -const { PERCENT_3_POINT } = NumberFormats; -const isProbablyHTML = (text: string) => /<[^>]+>/.test(text); - -export default function ReactDataTable(props: DataTableProps) { - const { - data, - height, - alignPositiveNegative = false, - colorPositiveNegative = false, - columns, - includeSearch = false, - metrics: aggMetrics, - pageLength, - percentMetrics, - tableTimestampFormat, - // orderDesc, - // TODO: add back the broken dashboard filters feature - // filters = {}, - // onAddFilter = NOOP, - // onRemoveFilter = NOOP, - // tableFilter, - // timeseriesLimitMetric, - } = props; - - const formatTimestamp = getTimeFormatter(tableTimestampFormat); - const metrics = (aggMetrics || []) - .concat(percentMetrics || []) - // actual records must be of numeric types as well - .filter(m => data[0] && typeof data[0][m] === 'number'); - - // check whethere a key is a metric - const metricsSet = new Set(aggMetrics); - const percentMetricsSet = new Set(percentMetrics); - - // collect min/max for rendering bars - const maxes: { [key: string]: number } = {}; - const mins: { [key: string]: number } = {}; - columns.forEach(({ key }) => { - const vals = data.map(row => row[key]); - if (metrics.includes(key)) { - const nums = vals as number[]; - if (alignPositiveNegative) { - maxes[key] = Math.max(...nums.map(Math.abs)); - } else { - maxes[key] = Math.max(...nums); - mins[key] = Math.min(...nums); - } - } - }); - - const viewportHeight = Math.min(height, window.innerHeight); - const pageLengthChoices = [10, 25, 40, 50, 75, 100, 150, 200]; - const hasPagination = pageLength > 0; - - const rootElem = createRef(); - - /** - * Adjust styles after rendering the table - */ - function drawCallback(this: DataTables.JQueryDataTables) { - const root = rootElem.current as HTMLElement; - // force smaller pagination, because datatables-bs hard-corded pagination styles - $('.pagination', root).addClass('pagination-sm'); - // display tr rows on current page - $('tr', root).css('display', ''); - } - - /** - * Format text for cell value - */ - function cellText(key: string, format: string | undefined, val: unknown) { - if (key === '__timestamp') { - return formatTimestamp(val); - } - if (typeof val === 'string') { - return filterXSS(val, { stripIgnoreTag: true }); - } - if (percentMetricsSet.has(key)) { - // in case percent metric can specify percent format in the future - return formatNumber(format || PERCENT_3_POINT, val as number); - } - if (metricsSet.has(key)) { - // default format '' will return human readable numbers (e.g. 50M, 33k) - return formatNumber(format, val as number); - } - return val; - } - - /** - * Cell background to render columns as horizontal bar chart - */ - function cellBar(key: string, val: number) { - const r = colorPositiveNegative && val < 0 ? 150 : 0; - if (alignPositiveNegative) { - const perc = Math.abs(Math.round((val / maxes[key]) * 100)); - // The 0.01 to 0.001 is a workaround for what appears to be a - // CSS rendering bug on flat, transparent colors - return ( - `linear-gradient(to right, rgba(${r},0,0,0.2), rgba(${r},0,0,0.2) ${perc}%, ` + - `rgba(0,0,0,0.01) ${perc}%, rgba(0,0,0,0.001) 100%)` - ); - } - const posExtent = Math.abs(Math.max(maxes[key], 0)); - const negExtent = Math.abs(Math.min(mins[key], 0)); - const tot = posExtent + negExtent; - const perc1 = Math.round((Math.min(negExtent + val, negExtent) / tot) * 100); - const perc2 = Math.round((Math.abs(val) / tot) * 100); - // The 0.01 to 0.001 is a workaround for what appears to be a - // CSS rendering bug on flat, transparent colors - return ( - `linear-gradient(to right, rgba(0,0,0,0.01), rgba(0,0,0,0.001) ${perc1}%, ` + - `rgba(${r},0,0,0.2) ${perc1}%, rgba(${r},0,0,0.2) ${perc1 + perc2}%, ` + - `rgba(0,0,0,0.01) ${perc1 + perc2}%, rgba(0,0,0,0.001) 100%)` - ); - } - - const options = { - aaSorting: [], // initial sorting order, reset to [] to use backend ordering - autoWidth: false, - paging: hasPagination, - pagingType: 'first_last_numbers', - pageLength, - lengthMenu: [ - [...pageLengthChoices, -1], - [...pageLengthChoices, t('All')], - ], - searching: includeSearch, - language: { - paginate: { - first: t('First'), - last: t('Last'), - previous: t('Previous'), - next: t('Next'), - }, - }, - bInfo: false, - scrollY: `${viewportHeight}px`, - scrollCollapse: true, - scrollX: true, - drawCallback, - }; - - useEffect(() => { - const $root = $(rootElem.current as HTMLElement); - const dataTable = $root.find('table').DataTable(options); - - // adjust table height - const scrollHeadHeight = $root.find('.dataTables_scrollHead').height() || 0; - const paginationHeight = $root.find('.dataTables_paginate').height() || 0; - const searchBarHeight = - $root.find('.dataTables_length,.dataTables_filter').closest('.row').height() || 0; - const scrollBodyHeight = viewportHeight - scrollHeadHeight - paginationHeight - searchBarHeight; - $root.find('.dataTables_scrollBody').css('max-height', scrollBodyHeight); - - return () => { - // there may be weird lifecycle issues, so put destroy in try/catch - try { - dataTable.destroy(); - // reset height - $root.find('.dataTables_scrollBody').css('max-height', ''); - } catch (error) { - // pass - } - }; - }); - - const tableElement = ( - - - - {columns.map(col => ( - // by default all columns will have sorting - - ))} - - - - {data.map((record, i) => ( - 0 && i >= pageLength ? 'none' : undefined }} - > - {columns.map(({ key, format }) => { - const val = record[key]; - const keyIsMetric = metricsSet.has(key); - const text = cellText(key, format, val); - const isHtml = !keyIsMetric && isProbablyHTML(text); - return ( - - ); - })} - - ))} - -
- {col.label} -
- {isHtml ? null : text} -
- ); - - return ( -
- ); -} diff --git a/plugins/table/src/Table.css b/plugins/table/src/Table.css deleted file mode 100644 index 235e0b5cde..0000000000 --- a/plugins/table/src/Table.css +++ /dev/null @@ -1,43 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -.superset-legacy-chart-table { - margin: 0px auto; -} -.superset-legacy-chart-table table { - width: 100%; -} -.superset-legacy-chart-table .dt-metric { - text-align: right; -} -.superset-legacy-chart-table div.dataTables_wrapper div.dataTables_paginate { - line-height: 0; -} -.superset-legacy-chart-table div.dataTables_wrapper div.dataTables_paginate ul.pagination { - margin-top: 0.5em; -} - -.superset-legacy-chart-table table.table thead th.sorting:after, -.superset-legacy-chart-table table.table thead th.sorting_asc:after, -.superset-legacy-chart-table table.table thead th.sorting_desc:after { - top: auto; - bottom: 6px; -} -.superset-legacy-chart-table td { - white-space: pre-wrap; -} diff --git a/plugins/table/src/images/thumbnail.png b/plugins/table/src/images/thumbnail.png deleted file mode 100644 index 0561210b9f..0000000000 Binary files a/plugins/table/src/images/thumbnail.png and /dev/null differ diff --git a/plugins/table/src/images/thumbnailLarge.png b/plugins/table/src/images/thumbnailLarge.png deleted file mode 100644 index a3dd1bee98..0000000000 Binary files a/plugins/table/src/images/thumbnailLarge.png and /dev/null differ diff --git a/plugins/table/src/index.ts b/plugins/table/src/index.ts deleted file mode 100644 index e938423f62..0000000000 --- a/plugins/table/src/index.ts +++ /dev/null @@ -1,40 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { t } from '@superset-ui/translation'; -import { ChartMetadata, ChartPlugin } from '@superset-ui/chart'; -import transformProps from './transformProps'; -import thumbnail from './images/thumbnail.png'; - -const metadata = new ChartMetadata({ - canBeAnnotationTypes: ['EVENT', 'INTERVAL'], - description: '', - name: t('Table'), - thumbnail, - useLegacyApi: true, -}); - -export default class TableChartPlugin extends ChartPlugin { - constructor() { - super({ - loadChart: () => import('./ReactDataTable'), - metadata, - transformProps, - }); - } -} diff --git a/plugins/table/src/transformProps.ts b/plugins/table/src/transformProps.ts deleted file mode 100644 index a095eb4376..0000000000 --- a/plugins/table/src/transformProps.ts +++ /dev/null @@ -1,114 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { ChartProps } from '@superset-ui/chart'; -import { QueryFormDataMetric } from '@superset-ui/query'; - -interface DataRecord { - [key: string]: unknown; -} - -interface DataColumnMeta { - // `key` is what is called `label` in the input props - key: string; - // `label` is verbose column name used for rendering - label: string; - format?: string; -} - -export interface DataTableProps { - // Each object is { field1: value1, field2: value2 } - data: DataRecord[]; - height: number; - alignPositiveNegative: boolean; - colorPositiveNegative: boolean; - columns: DataColumnMeta[]; - metrics: string[]; - percentMetrics: string[]; - includeSearch: boolean; - orderDesc: boolean; - pageLength: number; - tableTimestampFormat: string; - // TODO: add filters back or clean up - // filters: object; - // onAddFilter?: (key: string, value: number[]) => void; - // onRemoveFilter?: (key: string, value: number[]) => void; - // tableFilter: boolean; - // timeseriesLimitMetric: string | object; -} - -/** - * Consolidate list of metrics to string, identified by its unique identifier - */ -const consolidateMetricShape = (metric: QueryFormDataMetric) => { - if (typeof metric === 'string') return metric; - // even thought `metric.optionName` is more unique, it's not used - // anywhere else in `queryData` and cannot be used to access `data.records`. - // The records are still keyed by `metric.label`. - return metric.label; -}; - -export default function transformProps(chartProps: ChartProps): DataTableProps { - const { height, datasource, formData, queryData } = chartProps; - - const { - alignPn, - colorPn, - includeSearch, - orderDesc, - pageLength, - metrics: metrics_, - percentMetrics: percentMetrics_, - tableTimestampFormat, - } = formData; - const { columnFormats, verboseMap } = datasource; - const { records, columns: columns_ } = queryData.data; - const metrics = (metrics_ ?? []).map(consolidateMetricShape); - // percent metrics always starts with a '%' sign. - const percentMetrics = (percentMetrics_ ?? []) - .map(consolidateMetricShape) - .map((x: string) => `%${x}`); - const columns = columns_.map((key: string) => { - let label = verboseMap[key] || key; - - // make sure there is a " " after "%" for percent metrics - if (label[0] === '%' && label[1] !== ' ') { - label = `% ${label.slice(1)}`; - } - - return { - key, - label, - format: columnFormats?.[key], - }; - }); - - return { - height, - data: records, - columns, - metrics, - percentMetrics, - alignPositiveNegative: alignPn, - colorPositiveNegative: colorPn, - includeSearch, - orderDesc, - pageLength: pageLength && parseInt(pageLength, 10), - tableTimestampFormat, - }; -} diff --git a/plugins/table/test/ReactDataTable.test.tsx b/plugins/table/test/ReactDataTable.test.tsx deleted file mode 100644 index 9978a32337..0000000000 --- a/plugins/table/test/ReactDataTable.test.tsx +++ /dev/null @@ -1,58 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import React from 'react'; -import { mount, CommonWrapper } from 'enzyme'; -import ReactDataTable from '../src/ReactDataTable'; -import transformProps from '../src/transformProps'; -import testData from './testData'; - -describe('legacy-table', () => { - // Can test more prop transformation here. Not needed for now. - describe('transformProps', () => {}); - - describe('ReactDataTable', () => { - let wrap: CommonWrapper; // the ReactDataTable wraper - - it('render basic data', () => { - wrap = mount(); - const tree = wrap.render(); // returns a CheerioWrapper with jQuery-like API - const cells = tree.find('td'); - expect(tree.hasClass('superset-legacy-chart-table')).toEqual(true); - expect(cells).toHaveLength(4); - expect(cells.eq(0).text()).toEqual('Michael'); - expect(cells.eq(3).attr('data-sort')).toEqual('2467'); - }); - - it('render advanced data', () => { - // should successfull rerender with new props - wrap.setProps(transformProps(testData.advanced)); - const tree = wrap.render(); - const cells = tree.find('td'); - expect(tree.find('th').eq(1).text()).toEqual('Sum of Num'); - expect(cells.eq(2).text()).toEqual('12.346%'); - expect(cells.eq(4).text()).toEqual('2.47k'); - }); - - it('render empty data', () => { - wrap.setProps(transformProps(testData.empty)); - const tree = wrap.render(); - expect(tree.text()).toContain('No data available in table'); - }); - }); -}); diff --git a/plugins/table/test/testData.ts b/plugins/table/test/testData.ts deleted file mode 100644 index 1205049ff2..0000000000 --- a/plugins/table/test/testData.ts +++ /dev/null @@ -1,120 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { ChartProps } from '@superset-ui/chart'; - -const basicFormData = { - alignPn: false, - colorPn: false, - includeSearch: false, - orderDesc: true, - pageLength: 0, - metrics: [], - percentMetrics: null, - timeseriesLimitMetric: null, - tableFilter: false, - tableTimestampFormat: '%Y-%m-%d %H:%M:%S', -}; - -const basicChartProps = { - width: 200, - height: 500, - annotationData: {}, - datasource: { - columnFormats: {}, - verboseMap: {}, - }, - rawDatasource: {}, - rawFormData: {}, - hooks: {}, - initialValues: {}, - queryData: { - data: { - columns: [], - records: [], - }, - }, - formData: basicFormData, -}; - -/** - * Basic data input - */ -const basic: ChartProps = { - ...basicChartProps, - queryData: { - data: { - columns: ['name', 'sum__num'], - records: [ - { - name: 'Michael', - sum__num: 2467063, - '%pct_nice': 0.123456, - }, - { - name: 'Joe', - sum__num: 2467, - '%pct_nice': 0.00001, - }, - ], - }, - }, -}; - -/** - * Advanced data input with - * - verbose map - * - metric columns - */ -const advanced: ChartProps = { - ...basic, - datasource: { - columnFormats: {}, - verboseMap: { - sum__num: 'Sum of Num', - }, - }, - formData: { - ...basicFormData, - metrics: ['sum__num'], - percentMetrics: ['pct_nice'], - }, - queryData: { - data: { - columns: ['name', 'sum__num', '%pct_nice'], - records: [...basic.queryData.data.records], - }, - }, -}; - -const empty = { - ...advanced, - queryData: { - ...advanced.queryData, - data: { - ...advanced.queryData.data, - records: [], - }, - }, -}; - -export default { - basic, - advanced, - empty, -}; diff --git a/plugins/table/types/external.d.ts b/plugins/table/types/external.d.ts deleted file mode 100644 index 7896de9f7d..0000000000 --- a/plugins/table/types/external.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -declare module 'datatables.net-bs/js/dataTables.bootstrap'; -declare module '*.png'; diff --git a/scripts/build.js b/scripts/build.js deleted file mode 100644 index 80f83b79b9..0000000000 --- a/scripts/build.js +++ /dev/null @@ -1,33 +0,0 @@ -/** - * Build only plugins specified by globs - */ -const { spawnSync } = require('child_process'); - -const glob = process.argv[2]; -const extraArgs = process.argv.slice(2); - -process.env.PATH = `./node_modules/.bin:${process.env.PATH}`; - -const run = cmd => { - console.log(`>> ${cmd}`); - const [p, ...args] = cmd.split(' '); - const runner = spawnSync; - const { status } = runner(p, args, { stdio: 'inherit' }); - if (status !== 0) { - process.exit(status); - } -}; - -if (glob) { - run(`nimbus prettier plugins/${glob}/{src,test}/**/*.{js,jsx,ts,tsx,css}"`); - // lint is slow, so not turning it on by default - if (extraArgs.includes('--lint')) { - run(`nimbus eslint plugins/${glob}/{src,test}`); - } - run(`nimbus babel --clean --workspaces="@superset-ui/${glob}"`); - run(`nimbus babel --clean --workspaces="@superset-ui/${glob}" --esm`); - run(`nimbus typescript --build --workspaces="@superset-ui/${glob}"`); - require('./buildAssets'); -} else { - run('yarn build'); -} diff --git a/scripts/buildAssets.js b/scripts/buildAssets.js index db533dbd5f..e39eb50f83 100644 --- a/scripts/buildAssets.js +++ b/scripts/buildAssets.js @@ -1,32 +1,23 @@ /* eslint-disable import/no-extraneous-dependencies, no-console */ const fg = require('fast-glob'); const fs = require('fs-extra'); -const pkgGlob = process.argv[2] || '*'; -const packages = fg.sync([`{packages,plugins}/${pkgGlob}`], { +const packages = fg.sync(['packages/*'], { onlyDirectories: true, }); -console.log('Copying asset files from package {src} to {lib,esm}...'); packages.forEach(pkg => { const assets = fg.sync([`${pkg}/src/**/*.{png,gif,jpg,css,geojson}`]); assets.forEach(filePath => { - ['lib', 'esm'] - .map(dir => filePath.replace(`${pkg}/src`, `${pkg}/${dir}`)) - .forEach(newFilePath => { - fs.copy(filePath, newFilePath, err => { - if (err) { - console.error(err); - } - }); + const newPaths = ['lib', 'esm'].map(dir => filePath.replace(`${pkg}/src`, `${pkg}/${dir}`)); + newPaths.forEach(p => { + fs.copy(filePath, p, err => { + if (err) { + console.error(err); + } + console.log(`Copy ${filePath}`); + console.log(`=> to ${p}`); }); + }); }); - if (assets.length > 0) { - console.log( - ` Copied ${assets.length.toString().padStart(2)} asset files for ${pkg.replace( - 'packages/superset-ui-', - '', - )}`, - ); - } }); diff --git a/yarn.lock b/yarn.lock index a459909755..89cf91b437 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,103 +2,102 @@ # yarn lockfile v1 -"@airbnb/config-babel@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@airbnb/config-babel/-/config-babel-3.1.0.tgz#82f988093c7474754b5ab1a3c579397309de0162" - integrity sha512-pznP4jI9r17lb8W9+3EMmsFQRD18JjDZVwxCleZ1wWKpirVHZuKuXruXiJhCkGHR8pkPRda3P9WMzq7qc9GIEA== +"@airbnb/config-babel@^2.1.3": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@airbnb/config-babel/-/config-babel-2.2.2.tgz#ef1161388dc6586183b6e21447dd0470d8f94a08" + integrity sha512-EEh0z1q+gIYxeEYZfQgGb7i0D2s8XJ871w7GGprlRbPBjb+zOnmGq3w/55eA0eVyddAylShwM2cM1Z9/3JgrTQ== dependencies: - "@airbnb/nimbus-common" "^3.0.1" - "@babel/cli" "^7.8.4" - "@babel/core" "^7.9.0" + "@airbnb/nimbus-common" "^2.1.1" + "@babel/cli" "^7.8.3" + "@babel/core" "^7.8.3" "@babel/plugin-proposal-class-properties" "^7.8.3" - "@babel/plugin-transform-react-jsx-self" "^7.9.0" - "@babel/plugin-transform-react-jsx-source" "^7.9.0" - "@babel/plugin-transform-runtime" "^7.9.0" - "@babel/preset-env" "^7.9.0" - "@babel/preset-react" "^7.9.4" - "@babel/preset-typescript" "^7.9.0" - "@beemo/core" "^1.1.6" - "@beemo/driver-babel" "^1.2.3" + "@babel/plugin-transform-react-jsx-self" "^7.8.3" + "@babel/plugin-transform-react-jsx-source" "^7.8.3" + "@babel/plugin-transform-runtime" "^7.8.3" + "@babel/preset-env" "^7.8.3" + "@babel/preset-react" "^7.8.3" + "@babel/preset-typescript" "^7.8.3" + "@beemo/core" "^1.1.1" + "@beemo/driver-babel" "^1.2.0" babel-plugin-graphql-tag "^2.5.0" babel-plugin-transform-dev "^2.0.1" babel-plugin-transform-react-remove-prop-types "^0.4.24" - babel-plugin-typescript-to-proptypes "^1.3.2" + babel-plugin-typescript-to-proptypes "^1.1.0" -"@airbnb/config-eslint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@airbnb/config-eslint/-/config-eslint-3.1.0.tgz#5d7af50cdd1499e9c088a44d3995ab7d79fb04c0" - integrity sha512-ihrJ4f2zgNs/4Nx5Tc8w3p3pDlJ9m04WtymeeRTlSZnKm9aw2OnHOicOW07+T89RHCCo+94EZKuvLf0AgNuZ1Q== - dependencies: - "@airbnb/nimbus-common" "^3.0.1" - "@beemo/core" "^1.1.6" - "@beemo/driver-eslint" "^1.2.2" - "@typescript-eslint/eslint-plugin" "^2.25.0" - "@typescript-eslint/parser" "^2.25.0" - babel-eslint "^10.1.0" +"@airbnb/config-eslint@^2.1.3": + version "2.5.1" + resolved "https://registry.yarnpkg.com/@airbnb/config-eslint/-/config-eslint-2.5.1.tgz#c4d58c53bcdc5ba3982b136265872e7392b7439e" + integrity sha512-k8rToPOUwoG30uEenbKrE/bg7QCxlIEtVEbPFtZZuCQ0x8M5zQrbeRrsSA69FCUbnicm8vtQ+odti+Yd4kQqeA== + dependencies: + "@airbnb/nimbus-common" "^2.1.1" + "@beemo/core" "^1.1.1" + "@beemo/driver-eslint" "^1.2.0" + "@typescript-eslint/eslint-plugin" "^2.17.0" + "@typescript-eslint/parser" "^2.17.0" + babel-eslint "^10.0.3" eslint "^6.8.0" - eslint-config-airbnb "^18.1.0" - eslint-config-prettier "^6.10.1" - eslint-plugin-import "^2.20.1" - eslint-plugin-jest "^23.8.2" + eslint-config-airbnb "^18.0.1" + eslint-config-prettier "^6.9.0" + eslint-plugin-import "^2.20.0" + eslint-plugin-jest "^23.6.0" eslint-plugin-jsx-a11y "^6.2.3" eslint-plugin-prettier "^3.1.2" eslint-plugin-promise "^4.2.1" - eslint-plugin-react "^7.19.0" - eslint-plugin-react-hooks "^2.5.1" - eslint-plugin-unicorn "^17.2.0" + eslint-plugin-react "^7.18.0" + eslint-plugin-react-hooks "^2.3.0" + eslint-plugin-unicorn "^15.0.1" -"@airbnb/config-jest@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@airbnb/config-jest/-/config-jest-3.0.1.tgz#040a50c80bf43737be8380550b3010351ccc9ab2" - integrity sha512-wgXg+qV0I3JahG0ul1b+oQqT8z0PWFYTJnKKc+8J3Xc2/exUhXgfs7/1VoJVuDw182XdJzi5bfZXawCpEDnhpw== - dependencies: - "@airbnb/nimbus-common" "^3.0.1" - "@babel/core" "^7.9.0" - "@beemo/core" "^1.1.6" - "@beemo/driver-babel" "^1.2.3" - "@beemo/driver-jest" "^1.2.1" +"@airbnb/config-jest@^2.1.3": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@airbnb/config-jest/-/config-jest-2.2.2.tgz#2d50245376e67c91e865121e523655046fdc03e7" + integrity sha512-Th63Swbe21AnHLb08Lz74uaSuy+4weydLOzNQuyv0SWaCtedJGMB5jdIadCwUMg80uNnpVQSuGnIRH/2TfvmqA== + dependencies: + "@airbnb/nimbus-common" "^2.1.1" + "@babel/core" "^7.8.3" + "@beemo/core" "^1.1.1" + "@beemo/driver-babel" "^1.2.0" + "@beemo/driver-jest" "^1.1.1" airbnb-js-shims "^2.2.1" dom-storage "^2.1.0" jest "^25.1.0" -"@airbnb/config-prettier@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@airbnb/config-prettier/-/config-prettier-3.1.0.tgz#de8ea05cb705f60c5fce794d4110903387773654" - integrity sha512-qpPoPFK7wRK/xK0NzhoSNj8C6zSRtvoon1eSjtFJyEhk7ZL8pe62lZxqyn4jFO0uBBie/+YlVD+orY1zIJfeiA== +"@airbnb/config-prettier@^2.0.4": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@airbnb/config-prettier/-/config-prettier-2.1.1.tgz#cf18b45555f92309b470634da176ddc9ebb53e81" + integrity sha512-lt/q40KUWK3GdQEARGbJG5aCoPaFmlLCIY/9C/0dIYsCT/MmwGBQ6c5ez7JZ5dvWaGZb5Z0eNUnz44+LzHjq/Q== dependencies: - "@airbnb/nimbus-common" "^3.0.1" - "@beemo/core" "^1.1.6" - "@beemo/driver-prettier" "^1.3.0" - prettier "^2.0.2" + "@airbnb/nimbus-common" "^2.1.1" + "@beemo/core" "^1.1.1" + "@beemo/driver-prettier" "^1.2.0" + prettier "^1.19.1" -"@airbnb/config-typescript@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@airbnb/config-typescript/-/config-typescript-3.0.1.tgz#e6798340680ed775453f787a04ddf835d145ab25" - integrity sha512-T3jWpirZjmPqIERUMOmXoHXwRteYq+XJylxlMR04xEWSBgG/yyizQdoBHBd1bhEOYnHEI6ytLJQmujkjngfTjA== +"@airbnb/config-typescript@^2.1.2": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@airbnb/config-typescript/-/config-typescript-2.2.2.tgz#31273392691a63a06eb4efb4f3423a033952f0e1" + integrity sha512-Uk6DBCbfGPif6wxeA+5R4bBxTqFgHY2EW4sgfGZlj02oueMn2WTwli8Xk9E5rS2rzn42EYqo9MrOfDh98j5FsQ== dependencies: - "@beemo/core" "^1.1.6" - "@beemo/driver-typescript" "^1.3.2" - typescript "^3.8.3" + "@beemo/core" "^1.1.1" + "@beemo/driver-typescript" "^1.3.0" + typescript "^3.7.5" -"@airbnb/nimbus-common@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@airbnb/nimbus-common/-/nimbus-common-3.0.1.tgz#3f7d2f340b510995ebed17898c9447dad264330c" - integrity sha512-Qa/cPOcFktW36UL1RScVvrX06Ybv5/EJ1UBPtLHPi9POMAtq7bV0xe0Q3qSdAHrUp+4a1K4Gt3pjk3OnDAcbBg== +"@airbnb/nimbus-common@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@airbnb/nimbus-common/-/nimbus-common-2.1.1.tgz#8aa441ccd68c368020e47b967873f9523badcfcc" + integrity sha512-Nl1B0uze/gA0zvJFl4EVhA5JQZ5djzNIjuZv3qLL/VPTl5ImjJZwUcxTFUV6iD3nASw2vm7DrY1xvL06fiaxLQ== dependencies: - "@beemo/core" "^1.1.6" - "@boost/common" "^1.8.3" + "@beemo/core" "^1.1.1" + "@boost/core" "^1.17.0" execa "^4.0.0" - fast-glob "^3.2.2" + fast-glob "^3.1.1" -"@airbnb/nimbus@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@airbnb/nimbus/-/nimbus-3.1.1.tgz#25ad3b6f33a04a1b6f774e54ce69a0ba5cd7d8c1" - integrity sha512-1YPKbf0KWMy3mUGHSADJnnCdypYQU1aY/Z3KeWeV81kkCn+rsSxSWurr14kBiJtn2pshbGi560a9kuKvCB1/Sw== +"@airbnb/nimbus@^2.1.3": + version "2.2.3" + resolved "https://registry.yarnpkg.com/@airbnb/nimbus/-/nimbus-2.2.3.tgz#29ce1135c1674104d4da65ef58cca859b3cd7bdf" + integrity sha512-9a1rIsY4nRur7TDxxjrC34KDyiYni0mbp5xt8n/Hjp8/iGQzWWid2EUuM/sZ1jrd4RK92dWsYKUZnaQM1C9Zkg== dependencies: - "@airbnb/nimbus-common" "^3.0.1" - "@beemo/cli" "^1.0.10" - "@beemo/core" "^1.1.6" - "@octokit/rest" "^17.1.2" + "@airbnb/nimbus-common" "^2.1.1" + "@beemo/cli" "^1.0.7" + "@beemo/core" "^1.1.1" chalk "^3.0.0" check-node-version "^4.0.2" conventional-changelog-beemo "^1.6.0" @@ -106,10 +105,10 @@ enquirer "^2.3.4" execa "^4.0.0" -"@babel/cli@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.8.4.tgz#505fb053721a98777b2b175323ea4f090b7d3c1c" - integrity sha512-XXLgAm6LBbaNxaGhMAznXXaxtCWfuv6PIDJ9Alsy9JYTOh+j2jJz+L/162kkfU1j/pTSxK1xGmlwI4pdIMkoag== +"@babel/cli@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.8.3.tgz#121beb7c273e0521eb2feeb3883a2b7435d12328" + integrity sha512-K2UXPZCKMv7KwWy9Bl4sa6+jTNP7JyDiHKzoOiUUygaEDbC60vaargZDnO9oFMvlq8pIKOOyUUgeMYrsaN9djA== dependencies: commander "^4.0.1" convert-source-map "^1.1.0" @@ -136,43 +135,73 @@ dependencies: "@babel/highlight" "^7.8.3" -"@babel/compat-data@^7.8.6", "@babel/compat-data@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.9.0.tgz#04815556fc90b0c174abd2c0c1bb966faa036a6c" - integrity sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g== +"@babel/compat-data@^7.8.0", "@babel/compat-data@^7.8.1": + version "7.8.1" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.8.1.tgz#fc0bbbb7991e4fb2b47e168e60f2cc2c41680be9" + integrity sha512-Z+6ZOXvyOWYxJ50BwxzdhRnRsGST8Y3jaZgxYig575lTjVSs3KtJnmESwZegg6e2Dn0td1eDhoWlp1wI4BTCPw== dependencies: - browserslist "^4.9.1" + browserslist "^4.8.2" invariant "^2.2.4" semver "^5.5.0" -"@babel/core@^7.1.0", "@babel/core@^7.4.5", "@babel/core@^7.7.5", "@babel/core@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e" - integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w== +"@babel/core@^7.1.0", "@babel/core@^7.4.5", "@babel/core@^7.7.5", "@babel/core@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.3.tgz#30b0ebb4dd1585de6923a0b4d179e0b9f5d82941" + integrity sha512-4XFkf8AwyrEG7Ziu3L2L0Cv+WyY47Tcsp70JFmpftbAA1K7YL/sgE9jh9HyNj08Y/U50ItUchpN0w6HxAoX1rA== dependencies: "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.9.0" - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helpers" "^7.9.0" - "@babel/parser" "^7.9.0" - "@babel/template" "^7.8.6" - "@babel/traverse" "^7.9.0" - "@babel/types" "^7.9.0" + "@babel/generator" "^7.8.3" + "@babel/helpers" "^7.8.3" + "@babel/parser" "^7.8.3" + "@babel/template" "^7.8.3" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.1" + json5 "^2.1.0" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/core@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.4.tgz#d496799e5c12195b3602d0fddd77294e3e38e80e" + integrity sha512-0LiLrB2PwrVI+a2/IEskBopDYSd8BCb3rOvH7D5tzoWd696TBEduBvuLVm4Nx6rltrLZqvI3MCalB2K2aVzQjA== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/generator" "^7.8.4" + "@babel/helpers" "^7.8.4" + "@babel/parser" "^7.8.4" + "@babel/template" "^7.8.3" + "@babel/traverse" "^7.8.4" + "@babel/types" "^7.8.3" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.1" - json5 "^2.1.2" + json5 "^2.1.0" lodash "^4.17.13" resolve "^1.3.2" semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.9.0": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.4.tgz#12441e90c3b3c4159cdecf312075bf1a8ce2dbce" - integrity sha512-rjP8ahaDy/ouhrvCoU1E5mqaitWrxwuNGU+dy1EpaoK48jZay4MdkskKGIMHLZNewg8sAsqpGSREJwP0zH3YQA== +"@babel/generator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.3.tgz#0e22c005b0a94c1c74eafe19ef78ce53a4d45c03" + integrity sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug== dependencies: - "@babel/types" "^7.9.0" + "@babel/types" "^7.8.3" + jsesc "^2.5.1" + lodash "^4.17.13" + source-map "^0.5.0" + +"@babel/generator@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.4.tgz#35bbc74486956fe4251829f9f6c48330e8d0985e" + integrity sha512-PwhclGdRpNAf3IxZb0YVuITPZmmrXz9zf6fH8lT4XbrmfQKr6ryBzhv593P5C6poJRciFCL/eHGW2NuGrgEyxA== + dependencies: + "@babel/types" "^7.8.3" jsesc "^2.5.1" lodash "^4.17.13" source-map "^0.5.0" @@ -192,54 +221,53 @@ "@babel/helper-explode-assignable-expression" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helper-builder-react-jsx-experimental@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.0.tgz#066d80262ade488f9c1b1823ce5db88a4cedaa43" - integrity sha512-3xJEiyuYU4Q/Ar9BsHisgdxZsRlsShMe90URZ0e6przL26CCs8NJbDoxH94kKT17PcxlMhsCAwZd90evCo26VQ== +"@babel/helper-builder-react-jsx@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.8.3.tgz#dee98d7d79cc1f003d80b76fe01c7f8945665ff6" + integrity sha512-JT8mfnpTkKNCboTqZsQTdGo3l3Ik3l7QIt9hh0O9DYiwVel37VoJpILKM4YFbP2euF32nkQSb+F9cUk9b7DDXQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-module-imports" "^7.8.3" - "@babel/types" "^7.9.0" + "@babel/types" "^7.8.3" + esutils "^2.0.0" -"@babel/helper-builder-react-jsx@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32" - integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw== +"@babel/helper-call-delegate@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.3.tgz#de82619898aa605d409c42be6ffb8d7204579692" + integrity sha512-6Q05px0Eb+N4/GTyKPPvnkig7Lylw+QzihMpws9iiZQv7ZImf84ZsZpQH7QoWN4n4tm81SnSzPgHw2qtO0Zf3A== dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/types" "^7.9.0" + "@babel/helper-hoist-variables" "^7.8.3" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" -"@babel/helper-compilation-targets@^7.8.7": - version "7.8.7" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz#dac1eea159c0e4bd46e309b5a1b04a66b53c1dde" - integrity sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw== +"@babel/helper-compilation-targets@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.3.tgz#2deedc816fd41dca7355ef39fd40c9ea69f0719a" + integrity sha512-JLylPCsFjhLN+6uBSSh3iYdxKdeO9MNmoY96PE/99d8kyBFaXLORtAVhqN6iHa+wtPeqxKLghDOZry0+Aiw9Tw== dependencies: - "@babel/compat-data" "^7.8.6" - browserslist "^4.9.1" + "@babel/compat-data" "^7.8.1" + browserslist "^4.8.2" invariant "^2.2.4" - levenary "^1.1.1" + levenary "^1.1.0" semver "^5.5.0" "@babel/helper-create-class-features-plugin@^7.8.3": - version "7.8.6" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.6.tgz#243a5b46e2f8f0f674dc1387631eb6b28b851de0" - integrity sha512-klTBDdsr+VFFqaDHm5rR69OpEQtO2Qv8ECxHS1mNhJJvaHArR6a1xTf5K/eZW7eZpJbhCx3NW1Yt/sKsLXLblg== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.3.tgz#5b94be88c255f140fd2c10dd151e7f98f4bff397" + integrity sha512-qmp4pD7zeTxsv0JNecSBsEmG1ei2MqwJq4YQcK3ZWm/0t07QstWfvuV/vm3Qt5xNMFETn2SZqpMx2MQzbtq+KA== dependencies: "@babel/helper-function-name" "^7.8.3" "@babel/helper-member-expression-to-functions" "^7.8.3" "@babel/helper-optimise-call-expression" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" + "@babel/helper-replace-supers" "^7.8.3" "@babel/helper-split-export-declaration" "^7.8.3" -"@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8": - version "7.8.8" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087" - integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg== +"@babel/helper-create-regexp-features-plugin@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.3.tgz#c774268c95ec07ee92476a3862b75cc2839beb79" + integrity sha512-Gcsm1OHCUr9o9TcJln57xhWHtdXbA2pgQ58S0Lxlks0WMGNXuki4+GLfX0p+L2ZkINUGZvfkz8rzoqJQSthI+Q== dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" "@babel/helper-regex" "^7.8.3" - regexpu-core "^4.7.0" + regexpu-core "^4.6.0" "@babel/helper-define-map@^7.8.3": version "7.8.3" @@ -288,24 +316,23 @@ dependencies: "@babel/types" "^7.8.3" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.8.3": +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.7.0", "@babel/helper-module-imports@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== dependencies: "@babel/types" "^7.8.3" -"@babel/helper-module-transforms@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5" - integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA== +"@babel/helper-module-transforms@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.3.tgz#d305e35d02bee720fbc2c3c3623aa0c316c01590" + integrity sha512-C7NG6B7vfBa/pwCOshpMbOYUmrYQDfCpVL/JCRu0ek8B5p8kue1+BCXpg2vOYs7w5ACB9GTOBYQ5U6NwrMg+3Q== dependencies: "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" "@babel/helper-simple-access" "^7.8.3" "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/template" "^7.8.6" - "@babel/types" "^7.9.0" + "@babel/template" "^7.8.3" + "@babel/types" "^7.8.3" lodash "^4.17.13" "@babel/helper-optimise-call-expression@^7.8.3": @@ -338,15 +365,15 @@ "@babel/traverse" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6": - version "7.8.6" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8" - integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA== +"@babel/helper-replace-supers@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.3.tgz#91192d25f6abbcd41da8a989d4492574fb1530bc" + integrity sha512-xOUssL6ho41U81etpLoT2RTdvdus4VfHamCuAm4AHxGr+0it5fnwoVdwUJ7GFEqCsQYzJUhcbsN9wB9apcYKFA== dependencies: "@babel/helper-member-expression-to-functions" "^7.8.3" "@babel/helper-optimise-call-expression" "^7.8.3" - "@babel/traverse" "^7.8.6" - "@babel/types" "^7.8.6" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" "@babel/helper-simple-access@^7.8.3": version "7.8.3" @@ -363,11 +390,6 @@ dependencies: "@babel/types" "^7.8.3" -"@babel/helper-validator-identifier@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz#ad53562a7fc29b3b9a91bbf7d10397fd146346ed" - integrity sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw== - "@babel/helper-wrap-function@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610" @@ -378,28 +400,42 @@ "@babel/traverse" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helpers@^7.9.0": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f" - integrity sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA== +"@babel/helpers@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.3.tgz#382fbb0382ce7c4ce905945ab9641d688336ce85" + integrity sha512-LmU3q9Pah/XyZU89QvBgGt+BCsTPoQa+73RxAQh8fb8qkDyIfeQnmgs+hvzhTCKTzqOyk7JTkS3MS1S8Mq5yrQ== dependencies: "@babel/template" "^7.8.3" - "@babel/traverse" "^7.9.0" - "@babel/types" "^7.9.0" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" + +"@babel/helpers@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.4.tgz#754eb3ee727c165e0a240d6c207de7c455f36f73" + integrity sha512-VPbe7wcQ4chu4TDQjimHv/5tj73qz88o12EPkO2ValS2QiQS/1F2SsjyIGNnAD0vF/nZS6Cf9i+vW6HIlnaR8w== + dependencies: + "@babel/template" "^7.8.3" + "@babel/traverse" "^7.8.4" + "@babel/types" "^7.8.3" "@babel/highlight@^7.0.0", "@babel/highlight@^7.8.3": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" - integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797" + integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg== dependencies: - "@babel/helper-validator-identifier" "^7.9.0" chalk "^2.0.0" + esutils "^2.0.2" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.3.2", "@babel/parser@^7.7.0", "@babel/parser@^7.7.5", "@babel/parser@^7.8.6", "@babel/parser@^7.9.0": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8" - integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA== +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.3.2", "@babel/parser@^7.7.5", "@babel/parser@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.3.tgz#790874091d2001c9be6ec426c2eed47bc7679081" + integrity sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ== + +"@babel/parser@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.4.tgz#d1dbe64691d60358a974295fa53da074dd2ce8e8" + integrity sha512-0fKu/QqildpXmPVaRBoXOlyBb3MC+J0A66x97qEfLOMkn3u6nfY5esWogQwi/K0BjASYy4DbnsEWnpNL6qT5Mw== "@babel/plugin-proposal-async-generator-functions@^7.8.3": version "7.8.3" @@ -442,18 +478,10 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" -"@babel/plugin-proposal-numeric-separator@^7.8.3": +"@babel/plugin-proposal-object-rest-spread@^7.6.2", "@babel/plugin-proposal-object-rest-spread@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8" - integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - -"@babel/plugin-proposal-object-rest-spread@^7.6.2", "@babel/plugin-proposal-object-rest-spread@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.0.tgz#a28993699fc13df165995362693962ba6b061d6f" - integrity sha512-UgqBv6bjq4fDb8uku9f+wcm1J7YxJ5nT7WO/jBr0cl0PLKb7t1O6RNR1kZbjgx2LQtsDI9hwoQVmn0yhXeQyow== + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz#eb5ae366118ddca67bed583b53d7554cad9951bb" + integrity sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA== dependencies: "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-object-rest-spread" "^7.8.0" @@ -466,20 +494,20 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" -"@babel/plugin-proposal-optional-chaining@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" - integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== +"@babel/plugin-proposal-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz#ae10b3214cb25f7adb1f3bc87ba42ca10b7e2543" + integrity sha512-QIoIR9abkVn+seDE3OjA08jWcs3eZ9+wJCKSRgo3WdEU2csFYgdScb+8qHB3+WXsGJD55u+5hWCISI7ejXS+kg== dependencies: "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-optional-chaining" "^7.8.0" -"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3": - version "7.8.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d" - integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A== +"@babel/plugin-proposal-unicode-property-regex@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.3.tgz#b646c3adea5f98800c9ab45105ac34d06cd4a47f" + integrity sha512-1/1/rEZv2XGweRwwSkLpY+s60za9OZ1hJs4YDqFHCw0kYWYwL5IFljVY1MYBL+weT1l9pokDO2uhSTLVxzoHkQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.8" + "@babel/helper-create-regexp-features-plugin" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-async-generators@^7.8.0": @@ -531,13 +559,6 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f" - integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0": 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" @@ -566,7 +587,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-typescript@^7.8.3": +"@babel/plugin-syntax-typescript@^7.3.3", "@babel/plugin-syntax-typescript@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.8.3.tgz#c1f659dda97711a569cef75275f7e15dcaa6cabc" integrity sha512-GO1MQ/SGGGoiEXY0e0bSpHimJvxqB7lktLLIq2pv8xG7WZ8IMEle74jIe1FhprHBWjwjZtXHkycDLZXIWM5Wfg== @@ -604,17 +625,17 @@ "@babel/helper-plugin-utils" "^7.8.3" lodash "^4.17.13" -"@babel/plugin-transform-classes@^7.9.0": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.2.tgz#8603fc3cc449e31fdbdbc257f67717536a11af8d" - integrity sha512-TC2p3bPzsfvSsqBZo0kJnuelnoK9O3welkUpqSqBQuBF6R5MN2rysopri8kNvtlGIb2jmUO7i15IooAZJjZuMQ== +"@babel/plugin-transform-classes@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.3.tgz#46fd7a9d2bb9ea89ce88720477979fe0d71b21b8" + integrity sha512-SjT0cwFJ+7Rbr1vQsvphAHwUHvSUPmMjMU/0P59G8U2HLFqSa082JO7zkbDNWs9kH/IUqpHI6xWNesGf8haF1w== dependencies: "@babel/helper-annotate-as-pure" "^7.8.3" "@babel/helper-define-map" "^7.8.3" "@babel/helper-function-name" "^7.8.3" "@babel/helper-optimise-call-expression" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" + "@babel/helper-replace-supers" "^7.8.3" "@babel/helper-split-export-declaration" "^7.8.3" globals "^11.1.0" @@ -626,13 +647,13 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-destructuring@^7.8.3": - version "7.8.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.8.tgz#fadb2bc8e90ccaf5658de6f8d4d22ff6272a2f4b" - integrity sha512-eRJu4Vs2rmttFCdhPUM3bV0Yo/xPSdPw6ML9KHs/bjB4bLA5HXlbvYXPOD5yASodGod+krjYx21xm1QmL8dCJQ== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.3.tgz#20ddfbd9e4676906b1056ee60af88590cc7aaa0b" + integrity sha512-H4X646nCkiEcHZUZaRkhE2XVsoz0J/1x3VVujnn96pSoGCtKPA99ZZA+va+gK+92Zycd6OBKCD8tDb/731bhgQ== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3": +"@babel/plugin-transform-dotall-regex@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e" integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== @@ -655,18 +676,18 @@ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-flow-strip-types@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz#8a3538aa40434e000b8f44a3c5c9ac7229bd2392" - integrity sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg== +"@babel/plugin-transform-flow-strip-types@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.8.3.tgz#da705a655466b2a9b36046b57bf0cbcd53551bd4" + integrity sha512-g/6WTWG/xbdd2exBBzMfygjX/zw4eyNC4X8pRaq7aRHRoDUCzAIu3kGYIXviOv8BjCuWm8vDBwjHcjiRNgXrPA== dependencies: "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-flow" "^7.8.3" -"@babel/plugin-transform-for-of@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e" - integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== +"@babel/plugin-transform-for-of@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.3.tgz#15f17bce2fc95c7d59a24b299e83e81cedc22e18" + integrity sha512-ZjXznLNTxhpf4Q5q3x1NsngzGA38t9naWH8Gt+0qYZEJAcvPI9waSStSh56u19Ofjr7QmD0wUsQ8hw8s/p1VnA== dependencies: "@babel/helper-plugin-utils" "^7.8.3" @@ -692,41 +713,41 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-modules-amd@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.0.tgz#19755ee721912cf5bb04c07d50280af3484efef4" - integrity sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q== +"@babel/plugin-transform-modules-amd@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz#65606d44616b50225e76f5578f33c568a0b876a5" + integrity sha512-MadJiU3rLKclzT5kBH4yxdry96odTUwuqrZM+GllFI/VhxfPz+k9MshJM+MwhfkCdxxclSbSBbUGciBngR+kEQ== dependencies: - "@babel/helper-module-transforms" "^7.9.0" + "@babel/helper-module-transforms" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-commonjs@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz#e3e72f4cbc9b4a260e30be0ea59bdf5a39748940" - integrity sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g== +"@babel/plugin-transform-modules-commonjs@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz#df251706ec331bd058a34bdd72613915f82928a5" + integrity sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg== dependencies: - "@babel/helper-module-transforms" "^7.9.0" + "@babel/helper-module-transforms" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" "@babel/helper-simple-access" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-systemjs@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.0.tgz#e9fd46a296fc91e009b64e07ddaa86d6f0edeb90" - integrity sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ== +"@babel/plugin-transform-modules-systemjs@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.3.tgz#d8bbf222c1dbe3661f440f2f00c16e9bb7d0d420" + integrity sha512-8cESMCJjmArMYqa9AO5YuMEkE4ds28tMpZcGZB/jl3n0ZzlsxOAi3mC+SKypTfT8gjMupCnd3YiXCkMjj2jfOg== dependencies: "@babel/helper-hoist-variables" "^7.8.3" - "@babel/helper-module-transforms" "^7.9.0" + "@babel/helper-module-transforms" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-umd@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz#e909acae276fec280f9b821a5f38e1f08b480697" - integrity sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ== +"@babel/plugin-transform-modules-umd@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.3.tgz#592d578ce06c52f5b98b02f913d653ffe972661a" + integrity sha512-evhTyWhbwbI3/U6dZAnx/ePoV7H6OUG+OjiJFHmhr9FPn0VShjwC2kdxqIuQ/+1P50TMrneGzMeyMTFOjKSnAw== dependencies: - "@babel/helper-module-transforms" "^7.9.0" + "@babel/helper-module-transforms" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-named-capturing-groups-regex@^7.8.3": @@ -751,11 +772,12 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/helper-replace-supers" "^7.8.3" -"@babel/plugin-transform-parameters@^7.8.7": - version "7.9.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.3.tgz#3028d0cc20ddc733166c6e9c8534559cee09f54a" - integrity sha512-fzrQFQhp7mIhOzmOtPiKffvCYQSK10NR8t6BBz2yPbeUHb9OLW8RZGtgDRBn8z2hGcwvKDL3vC7ojPTLNxmqEg== +"@babel/plugin-transform-parameters@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.3.tgz#7890576a13b17325d8b7d44cb37f21dc3bbdda59" + integrity sha512-/pqngtGb54JwMBZ6S/D3XYylQDFtGjWrnoCF4gXZOUpFV/ujbxnoNGNvDGu6doFWRPBveE72qTx/RRU44j5I/Q== dependencies: + "@babel/helper-call-delegate" "^7.8.3" "@babel/helper-get-function-arity" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" @@ -767,10 +789,11 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-react-constant-elements@^7.0.0", "@babel/plugin-transform-react-constant-elements@^7.2.0", "@babel/plugin-transform-react-constant-elements@^7.6.3": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.9.0.tgz#a75abc936a3819edec42d3386d9f1c93f28d9d9e" - integrity sha512-wXMXsToAUOxJuBBEHajqKLFWcCkOSLshTI2ChCFFj1zDd7od4IOxiwLCOObNUvOpkxLpjIuaIdBMmNt6ocCPAw== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.8.3.tgz#784c25294bddaad2323eb4ff0c9f4a3f6c87d6bc" + integrity sha512-glrzN2U+egwRfkNFtL34xIBYTxbbUF2qJTP8HD3qETBBqzAWSeNB821X0GjU06+dNpq/UyCIjI72FmGE5NNkQQ== dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-react-display-name@^7.8.3": @@ -780,47 +803,37 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-react-jsx-development@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz#3c2a130727caf00c2a293f0aed24520825dbf754" - integrity sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw== - dependencies: - "@babel/helper-builder-react-jsx-experimental" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" - -"@babel/plugin-transform-react-jsx-self@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz#f4f26a325820205239bb915bad8e06fcadabb49b" - integrity sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ== +"@babel/plugin-transform-react-jsx-self@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.8.3.tgz#c4f178b2aa588ecfa8d077ea80d4194ee77ed702" + integrity sha512-01OT7s5oa0XTLf2I8XGsL8+KqV9lx3EZV+jxn/L2LQ97CGKila2YMroTkCEIE0HV/FF7CMSRsIAybopdN9NTdg== dependencies: "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-react-jsx-source@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0" - integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw== +"@babel/plugin-transform-react-jsx-source@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.8.3.tgz#951e75a8af47f9f120db731be095d2b2c34920e0" + integrity sha512-PLMgdMGuVDtRS/SzjNEQYUT8f4z1xb2BAT54vM1X5efkVuYBf5WyGUMbpmARcfq3NaglIwz08UVQK4HHHbC6ag== dependencies: "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-react-jsx@^7.9.4": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz#86f576c8540bd06d0e95e0b61ea76d55f6cbd03f" - integrity sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw== +"@babel/plugin-transform-react-jsx@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.8.3.tgz#4220349c0390fdefa505365f68c103562ab2fc4a" + integrity sha512-r0h+mUiyL595ikykci+fbwm9YzmuOrUBi0b+FDIKmi3fPQyFokWVEMJnRWHJPPQEjyFJyna9WZC6Viv6UHSv1g== dependencies: - "@babel/helper-builder-react-jsx" "^7.9.0" - "@babel/helper-builder-react-jsx-experimental" "^7.9.0" + "@babel/helper-builder-react-jsx" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-regenerator@^7.8.7": - version "7.8.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8" - integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== +"@babel/plugin-transform-regenerator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.3.tgz#b31031e8059c07495bf23614c97f3d9698bc6ec8" + integrity sha512-qt/kcur/FxrQrzFR432FGZznkVAjiyFtCOANjkAKwCbt465L6ZCiUQh2oMYGU3Wo8LRFJxNDFwWn106S5wVUNA== dependencies: - regenerator-transform "^0.14.2" + regenerator-transform "^0.14.0" "@babel/plugin-transform-reserved-words@^7.8.3": version "7.8.3" @@ -829,10 +842,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-runtime@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz#45468c0ae74cc13204e1d3b1f4ce6ee83258af0b" - integrity sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw== +"@babel/plugin-transform-runtime@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.8.3.tgz#c0153bc0a5375ebc1f1591cb7eea223adea9f169" + integrity sha512-/vqUt5Yh+cgPZXXjmaG9NT8aVfThKk7G4OqkVhrXqwsC5soMn/qTCxs36rZ2QFhpfTJcjw4SNDIZ4RUb8OL4jQ== dependencies: "@babel/helper-module-imports" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" @@ -869,17 +882,17 @@ "@babel/helper-annotate-as-pure" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-typeof-symbol@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz#ede4062315ce0aaf8a657a920858f1a2f35fc412" - integrity sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg== +"@babel/plugin-transform-typeof-symbol@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.3.tgz#5cffb216fb25c8c64ba6bf5f76ce49d3ab079f4d" + integrity sha512-3TrkKd4LPqm4jHs6nPtSDI/SV9Cm5PRJkHLUgTcqRQQTMAZ44ZaAdDZJtvWFSaRcvT0a1rTmJ5ZA5tDKjleF3g== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-typescript@^7.3.2", "@babel/plugin-transform-typescript@^7.9.0": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.4.tgz#4bb4dde4f10bbf2d787fce9707fb09b483e33359" - integrity sha512-yeWeUkKx2auDbSxRe8MusAG+n4m9BFY/v+lPjmQDgOFX5qnySkUY5oXzkp6FwPdsYqnKay6lorXYdC0n3bZO7w== +"@babel/plugin-transform-typescript@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.8.3.tgz#be6f01a7ef423be68e65ace1f04fc407e6d88917" + integrity sha512-Ebj230AxcrKGZPKIp4g4TdQLrqX95TobLUWKd/CwG7X1XHUH1ZpkpFvXuXqWbtGRWb7uuEWNlrl681wsOArAdQ== dependencies: "@babel/helper-create-class-features-plugin" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" @@ -893,29 +906,27 @@ "@babel/helper-create-regexp-features-plugin" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/preset-env@^7.4.5", "@babel/preset-env@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.0.tgz#a5fc42480e950ae8f5d9f8f2bbc03f52722df3a8" - integrity sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ== +"@babel/preset-env@^7.4.5", "@babel/preset-env@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.8.3.tgz#dc0fb2938f52bbddd79b3c861a4b3427dd3a6c54" + integrity sha512-Rs4RPL2KjSLSE2mWAx5/iCH+GC1ikKdxPrhnRS6PfFVaiZeom22VFKN4X8ZthyN61kAaR05tfXTbCvatl9WIQg== dependencies: - "@babel/compat-data" "^7.9.0" - "@babel/helper-compilation-targets" "^7.8.7" + "@babel/compat-data" "^7.8.0" + "@babel/helper-compilation-targets" "^7.8.3" "@babel/helper-module-imports" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-proposal-async-generator-functions" "^7.8.3" "@babel/plugin-proposal-dynamic-import" "^7.8.3" "@babel/plugin-proposal-json-strings" "^7.8.3" "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-proposal-numeric-separator" "^7.8.3" - "@babel/plugin-proposal-object-rest-spread" "^7.9.0" + "@babel/plugin-proposal-object-rest-spread" "^7.8.3" "@babel/plugin-proposal-optional-catch-binding" "^7.8.3" - "@babel/plugin-proposal-optional-chaining" "^7.9.0" + "@babel/plugin-proposal-optional-chaining" "^7.8.3" "@babel/plugin-proposal-unicode-property-regex" "^7.8.3" "@babel/plugin-syntax-async-generators" "^7.8.0" "@babel/plugin-syntax-dynamic-import" "^7.8.0" "@babel/plugin-syntax-json-strings" "^7.8.0" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" - "@babel/plugin-syntax-numeric-separator" "^7.8.0" "@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" @@ -924,130 +935,127 @@ "@babel/plugin-transform-async-to-generator" "^7.8.3" "@babel/plugin-transform-block-scoped-functions" "^7.8.3" "@babel/plugin-transform-block-scoping" "^7.8.3" - "@babel/plugin-transform-classes" "^7.9.0" + "@babel/plugin-transform-classes" "^7.8.3" "@babel/plugin-transform-computed-properties" "^7.8.3" "@babel/plugin-transform-destructuring" "^7.8.3" "@babel/plugin-transform-dotall-regex" "^7.8.3" "@babel/plugin-transform-duplicate-keys" "^7.8.3" "@babel/plugin-transform-exponentiation-operator" "^7.8.3" - "@babel/plugin-transform-for-of" "^7.9.0" + "@babel/plugin-transform-for-of" "^7.8.3" "@babel/plugin-transform-function-name" "^7.8.3" "@babel/plugin-transform-literals" "^7.8.3" "@babel/plugin-transform-member-expression-literals" "^7.8.3" - "@babel/plugin-transform-modules-amd" "^7.9.0" - "@babel/plugin-transform-modules-commonjs" "^7.9.0" - "@babel/plugin-transform-modules-systemjs" "^7.9.0" - "@babel/plugin-transform-modules-umd" "^7.9.0" + "@babel/plugin-transform-modules-amd" "^7.8.3" + "@babel/plugin-transform-modules-commonjs" "^7.8.3" + "@babel/plugin-transform-modules-systemjs" "^7.8.3" + "@babel/plugin-transform-modules-umd" "^7.8.3" "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3" "@babel/plugin-transform-new-target" "^7.8.3" "@babel/plugin-transform-object-super" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.8.7" + "@babel/plugin-transform-parameters" "^7.8.3" "@babel/plugin-transform-property-literals" "^7.8.3" - "@babel/plugin-transform-regenerator" "^7.8.7" + "@babel/plugin-transform-regenerator" "^7.8.3" "@babel/plugin-transform-reserved-words" "^7.8.3" "@babel/plugin-transform-shorthand-properties" "^7.8.3" "@babel/plugin-transform-spread" "^7.8.3" "@babel/plugin-transform-sticky-regex" "^7.8.3" "@babel/plugin-transform-template-literals" "^7.8.3" - "@babel/plugin-transform-typeof-symbol" "^7.8.4" + "@babel/plugin-transform-typeof-symbol" "^7.8.3" "@babel/plugin-transform-unicode-regex" "^7.8.3" - "@babel/preset-modules" "^0.1.3" - "@babel/types" "^7.9.0" - browserslist "^4.9.1" + "@babel/types" "^7.8.3" + browserslist "^4.8.2" core-js-compat "^3.6.2" invariant "^2.2.2" - levenary "^1.1.1" + levenary "^1.1.0" semver "^5.5.0" "@babel/preset-flow@^7.0.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.9.0.tgz#fee847c3e090b0b2d9227c1949e4da1d1379280d" - integrity sha512-88uSmlshIrlmPkNkEcx3UpSZ6b8n0UGBq0/0ZMZCF/uxAW0XIAUuDHBhIOAh0pvweafH4RxOwi/H3rWhtqOYPA== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.8.3.tgz#52af74c6a4e80d889bd9436e8e278d0fecac6e18" + integrity sha512-iCXFk+T4demnq+dNLLvlGOgvYF6sPZ/hS1EmswugOqh1Ysp2vuiqJzpgsnp5rW8+6dLJT/0CXDzye28ZH6BAfQ== dependencies: "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-transform-flow-strip-types" "^7.9.0" - -"@babel/preset-modules@^0.1.3": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" - integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== - 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/plugin-transform-flow-strip-types" "^7.8.3" -"@babel/preset-react@^7.0.0", "@babel/preset-react@^7.9.4": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.4.tgz#c6c97693ac65b6b9c0b4f25b948a8f665463014d" - integrity sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ== +"@babel/preset-react@^7.0.0", "@babel/preset-react@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.8.3.tgz#23dc63f1b5b0751283e04252e78cf1d6589273d2" + integrity sha512-9hx0CwZg92jGb7iHYQVgi0tOEHP/kM60CtWJQnmbATSPIQQ2xYzfoCI3EdqAhFBeeJwYMdWQuDUHMsuDbH9hyQ== dependencies: "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-react-display-name" "^7.8.3" - "@babel/plugin-transform-react-jsx" "^7.9.4" - "@babel/plugin-transform-react-jsx-development" "^7.9.0" - "@babel/plugin-transform-react-jsx-self" "^7.9.0" - "@babel/plugin-transform-react-jsx-source" "^7.9.0" + "@babel/plugin-transform-react-jsx" "^7.8.3" + "@babel/plugin-transform-react-jsx-self" "^7.8.3" + "@babel/plugin-transform-react-jsx-source" "^7.8.3" -"@babel/preset-typescript@^7.3.3", "@babel/preset-typescript@^7.8.3", "@babel/preset-typescript@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz#87705a72b1f0d59df21c179f7c3d2ef4b16ce192" - integrity sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg== +"@babel/preset-typescript@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.8.3.tgz#90af8690121beecd9a75d0cc26c6be39d1595d13" + integrity sha512-qee5LgPGui9zQ0jR1TeU5/fP9L+ovoArklEqY12ek8P/wV5ZeM/VYSQYwICeoT6FfpJTekG9Ilay5PhwsOpMHA== dependencies: "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-transform-typescript" "^7.9.0" + "@babel/plugin-transform-typescript" "^7.8.3" -"@babel/runtime-corejs3@^7.8.3": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.9.2.tgz#26fe4aa77e9f1ecef9b776559bbb8e84d34284b7" - integrity sha512-HHxmgxbIzOfFlZ+tdeRKtaxWOMUoCG5Mu3wKeUmOxjYrwb3AAHgnmtCUbPPK11/raIWLIBK250t8E2BPO0p7jA== +"@babel/runtime-corejs3@^7.7.4": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.8.3.tgz#a2445836d0699e5ba77eea2c790ad9ea51e2cd27" + integrity sha512-lrIU4aVbmlM/wQPzhEvzvNJskKyYptuXb0fGC0lTQTupTOYtR2Vqbu6/jf8vTr4M8Wt1nIzxVrSvPI5qESa/xA== dependencies: core-js-pure "^3.0.0" - regenerator-runtime "^0.13.4" + regenerator-runtime "^0.13.2" -"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" - integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.4", "@babel/runtime@^7.7.6": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.3.tgz#0811944f73a6c926bb2ad35e918dcc1bfab279f1" + integrity sha512-fVHx1rzEmwB130VTkLnxR+HmxcTjGzH12LYQcFFoBwakMd3aOMD4OsRN7tGG/UOYE2ektgFrS8uACAoRk1CY0w== dependencies: - regenerator-runtime "^0.13.4" + regenerator-runtime "^0.13.2" -"@babel/standalone@^7.4.5": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.9.4.tgz#078025ada03c3d8e60b4abfb042326ad9bfb035d" - integrity sha512-liRTBSbwxaXmrAqH43qF/fh7soqTMF3+j2eUdsRwKzPwu1WCUBPG1yZQFfk3Wrw3Pk4GFcJpI9dksXY+bhNMwg== +"@babel/template@^7.7.4", "@babel/template@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.3.tgz#e02ad04fe262a657809327f578056ca15fd4d1b8" + integrity sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/parser" "^7.8.3" + "@babel/types" "^7.8.3" -"@babel/template@^7.7.4", "@babel/template@^7.8.3", "@babel/template@^7.8.6": - version "7.8.6" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b" - integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.6", "@babel/traverse@^7.7.4", "@babel/traverse@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.3.tgz#a826215b011c9b4f73f3a893afbc05151358bf9a" + integrity sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg== dependencies: "@babel/code-frame" "^7.8.3" - "@babel/parser" "^7.8.6" - "@babel/types" "^7.8.6" + "@babel/generator" "^7.8.3" + "@babel/helper-function-name" "^7.8.3" + "@babel/helper-split-export-declaration" "^7.8.3" + "@babel/parser" "^7.8.3" + "@babel/types" "^7.8.3" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.13" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.6", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.4", "@babel/traverse@^7.8.3", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.0.tgz#d3882c2830e513f4fe4cec9fe76ea1cc78747892" - integrity sha512-jAZQj0+kn4WTHO5dUZkZKhbFrqZE7K5LAQ5JysMnmvGij+wOdr+8lWqPeW0BcF4wFwrEXXtdGO7wcV6YPJcf3w== +"@babel/traverse@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.4.tgz#f0845822365f9d5b0e312ed3959d3f827f869e3c" + integrity sha512-NGLJPZwnVEyBPLI+bl9y9aSnxMhsKz42so7ApAv9D+b4vAFPpY013FTS9LdKxcABoIYFU52HcYga1pPlx454mg== dependencies: "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.9.0" + "@babel/generator" "^7.8.4" "@babel/helper-function-name" "^7.8.3" "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/parser" "^7.9.0" - "@babel/types" "^7.9.0" + "@babel/parser" "^7.8.4" + "@babel/types" "^7.8.3" debug "^4.1.0" globals "^11.1.0" lodash "^4.17.13" -"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.1.6", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.0.tgz#00b064c3df83ad32b2dbf5ff07312b15c7f1efb5" - integrity sha512-BS9JKfXkzzJl8RluW4JGknzpiUV7ZrvTayM6yfqLTVBEnFtyowVIOu6rqxRd5cVO6yGoWf4T8u8dgK9oB+GCng== +"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.1.6", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c" + integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg== dependencies: - "@babel/helper-validator-identifier" "^7.9.0" + esutils "^2.0.2" lodash "^4.17.13" to-fast-properties "^2.0.0" @@ -1061,27 +1069,27 @@ resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== -"@beemo/cli@^1.0.10": - version "1.0.10" - resolved "https://registry.yarnpkg.com/@beemo/cli/-/cli-1.0.10.tgz#8600a1dca69cbd48605621702fc7a791a9bd16c8" - integrity sha512-qFTPLpr06FppHR+OGMTolVR+j85Xb157NtQsxv3Id276rWQPfyw9j7CNoe/GqtX9KzxRd1f+6bCnrbqMM5AfEA== +"@beemo/cli@^1.0.7": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@beemo/cli/-/cli-1.0.7.tgz#bbda42abccc6d6e0fb2c54c4238330372743a68d" + integrity sha512-NDPx/gxqXXWH0rsL3AbUyANeNd2mNEGE8w1avSHqifAKxha5nx3KPpiEkicw/GKFTROwIqFBs9VwbQ4FAEUkAA== dependencies: chalk "^3.0.0" semver "^6.3.0" - yargs "^15.3.1" + yargs "^15.0.2" -"@beemo/core@^1.1.6": - version "1.1.6" - resolved "https://registry.yarnpkg.com/@beemo/core/-/core-1.1.6.tgz#6a3462681f6a0af76216992f185235ba431c952a" - integrity sha512-/ZIPnXH754FgOcS4boDLJljhVDCDDSNqn6T5Ul/hBdfnTcR6dj1j8ZQ3QsQGG6kQ0N70xn5WNz/rABiFtQZ9Mg== - dependencies: - "@beemo/dependency-graph" "^1.1.0" - "@boost/common" "^1.8.2" - "@boost/core" "^1.18.2" - "@boost/event" "^1.3.0" - "@types/micromatch" "^4.0.1" - "@types/yargs" "^15.0.4" - "@types/yargs-parser" "^15.0.0" +"@beemo/core@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@beemo/core/-/core-1.1.1.tgz#8ff82bb248975eb752398b7ee53f263e2469af1c" + integrity sha512-26rXyW2Y0ipTtiVRNf5blHKQZe3DLYjNVEMUx99fFktr41w7ZzHJIPfrWZIj8/vc4wFJopkJOKrTKpw6KDmEkg== + dependencies: + "@beemo/dependency-graph" "^1.0.1" + "@boost/common" "^1.6.0" + "@boost/core" "^1.16.0" + "@boost/event" "^1.1.1" + "@types/micromatch" "^3.1.1" + "@types/yargs" "^13.0.0" + "@types/yargs-parser" "^13.0.0" chalk "^3.0.0" execa "^3.4.0" fast-glob "^3.0.4" @@ -1090,158 +1098,168 @@ is-glob "^4.0.1" lodash "^4.17.15" micromatch "^4.0.2" - optimal "^4.2.0" - yargs "^15.3.1" - yargs-parser "^18.1.1" + optimal "^3.3.0" + yargs "^15.0.2" + yargs-parser "^16.1.0" -"@beemo/dependency-graph@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@beemo/dependency-graph/-/dependency-graph-1.1.0.tgz#5f110fe8ed148acf589bc4fddc538b07f0a4d03f" - integrity sha512-xBPqNB99Q0icr7NgYZyxH9lmjo1UgzzozZM/gcDe1jYqKBFx2CZ4jkuOG3d7exjAN4jq/+QfWETAJrHnopdAaA== +"@beemo/dependency-graph@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@beemo/dependency-graph/-/dependency-graph-1.0.1.tgz#572b547a435a3b6e8d964c6caadef5e3d2a7284f" + integrity sha512-ATco1JiZX+B+J5BdEmMGKPcnrjebOAV1TIe/r1VAydnGTSQLbmqt7H/QAG1+VfPlWB8k+bRBOAiw3HjTTleemg== -"@beemo/driver-babel@^1.2.3": - version "1.2.3" - resolved "https://registry.yarnpkg.com/@beemo/driver-babel/-/driver-babel-1.2.3.tgz#3780ec28fbd5b58e5967100f3133a2f729e8e944" - integrity sha512-tOUBR7bSQ8AqBPf0JkEI3mHjyxe+cJaLBeAJYhTZJ/vaLRdMPfLtzx8144dTZ9P0uk+oa8kwUjBLgBzjHNDpqg== +"@beemo/driver-babel@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@beemo/driver-babel/-/driver-babel-1.2.0.tgz#a5808980789a3804f4c43dcc1d0ee3b399fd4632" + integrity sha512-YXDW/mbXqlS0Ba+6ECsCHThq5H8qDqY3l/wejYzhBaaVvMl+YE+ZZRhGNTGwZ9FBTgwUwfFmxXlsIMs1nX+s/w== dependencies: - rimraf "^3.0.2" + rimraf "^3.0.0" -"@beemo/driver-eslint@^1.2.2": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@beemo/driver-eslint/-/driver-eslint-1.2.2.tgz#c6ae690c713b8259525df988907c24ae96640f8e" - integrity sha512-ltV09kvhCKTI3lurkGxPrAeJZRxElGPzT9t/rpYU1B8QJqbcUOIhKWk7W+21lCHGov4Ez+L7+TOXTkUl80JIqA== +"@beemo/driver-eslint@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@beemo/driver-eslint/-/driver-eslint-1.2.0.tgz#7db72744a815630710bd68b0d31add57d3a5dd1a" + integrity sha512-ZWxOVDi1tgmvnzunUob9r3u0kHfIIXcQbWZpvxhe+SwPUIAVVQS88r7kVlP0/l+jEfF3HP3x8CO25iXcxurEJA== dependencies: - "@boost/event" "^1.3.0" + "@boost/event" "^1.1.1" -"@beemo/driver-jest@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@beemo/driver-jest/-/driver-jest-1.2.1.tgz#47b253fac5d390bc3dc0841ee96b26f250113744" - integrity sha512-5P6SSUQvydn1S0wnwMTfbuQPYdiWb702LPAwtDVUTwbh9T2oRGCDGl3Sr9FQspvR2Ky9mkyHrL89KULr+qHcZw== +"@beemo/driver-jest@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@beemo/driver-jest/-/driver-jest-1.1.1.tgz#f199159839e6edceb77f40e20e3a021e2cb4c77b" + integrity sha512-xYto/0JzvgSeMRSghJS6+hcgXILmcLHbWBYmc7PU+VSLezZkjzSIP815FAP1KupSsunwTLhfDiSXP/kPDnJDcg== dependencies: - "@jest/types" "^25.1.0" + "@jest/types" "^24.9.0" -"@beemo/driver-prettier@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@beemo/driver-prettier/-/driver-prettier-1.3.0.tgz#df8f9b9f7aea2204ec42dd1094ad52bbd283e34f" - integrity sha512-SxYfiCCBEaIQtDZ2TlAJpa84d6NUVtUh0hoSdzsq5RUFNblzI/rxLIQJOkC8mKM4lIKprJ7WZ3fh6QXB+sr6Ug== +"@beemo/driver-prettier@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@beemo/driver-prettier/-/driver-prettier-1.2.0.tgz#54ce3d6aeb35992ec7ac94148bc6e07c4145aa9d" + integrity sha512-ZHVi5cIlw9ZCkGS4WbyfZ8+5s4Eq1rfv6FrfFXakP6m5QGsVf5C5ewngZXxSBc6TIEACZiv/r5y89XVEPt3T7w== dependencies: - "@boost/event" "^1.3.0" + "@boost/event" "^1.1.1" "@types/prettier" "*" -"@beemo/driver-typescript@^1.3.2": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@beemo/driver-typescript/-/driver-typescript-1.3.2.tgz#0c7b71e65e38b025a9b2e49a4b92f1de8b81352e" - integrity sha512-XBp0olTjSq7bMYyi6BNpLOLAAdCg92uvEJMWptJMcjpmuOlo7PkQinjhJMYR0DkEQqd6ynzLBktBgglh5z+BzQ== +"@beemo/driver-typescript@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@beemo/driver-typescript/-/driver-typescript-1.3.0.tgz#523f41d295fb608c2cf9f64bfd83141749c74bc6" + integrity sha512-tVAaSussl6hvenqztAbl2rBe3ug7g6j8vSK7An1B0KYEPtrLxAXsh+GVmh3iMi3IDyFVcv1mffxAXVeIin0GQQ== dependencies: - "@boost/event" "^1.3.0" - rimraf "^3.0.2" + "@boost/event" "^1.1.1" + rimraf "^3.0.0" -"@boost/common@^1.8.2", "@boost/common@^1.8.3": - version "1.8.3" - resolved "https://registry.yarnpkg.com/@boost/common/-/common-1.8.3.tgz#ea491c50c40f54f3eb094aa26c5134f0d759e206" - integrity sha512-3R0hfJ1eoiBcybCdvqZirKpXebNWHJ0GSNwwXEmQlEVWfS+8BTnE8Qg/+U8oZNhBS6DeA44Lh2AWEDNbHTZ2KA== +"@boost/common@^1.6.0", "@boost/common@^1.7.0": + version "1.7.0" + resolved "https://registry.yarnpkg.com/@boost/common/-/common-1.7.0.tgz#3847eed7449ea034137025fcb8a172e74044f552" + integrity sha512-sKZWHZRu4uj0K/9Lo2CJxAAJwmyLDcd3dp9lAyb6S8+j0O07gdqgPG5bveedbMhzwBFX8/ziaiR2fj/kdFNONw== dependencies: - "@boost/internal" "^1.1.0" + "@boost/internal" "^1.0.2" js-yaml "^3.13.1" - json5 "^2.1.2" - optimal "^4.2.0" + json5 "^2.1.1" + optimal "^3.3.0" pretty-ms "^5.1.0" -"@boost/core@^1.18.2": - version "1.18.3" - resolved "https://registry.yarnpkg.com/@boost/core/-/core-1.18.3.tgz#a49f93961ff6d5fca3620b444311f20fd937b5d9" - integrity sha512-x2Im2/hdnXRSUQ8SG5n9QnSnydnlasavt0YmJZA80QH30m8yjFRGB+MsnUtlkVt6Zl4eKuVkyrUuLTE7ZPECgg== - dependencies: - "@boost/common" "^1.8.3" - "@boost/debug" "^1.4.4" - "@boost/event" "^1.3.0" - "@boost/internal" "^1.1.0" - "@boost/log" "^1.1.12" - "@boost/terminal" "^1.0.3" - "@boost/translate" "^1.3.7" +"@boost/core@^1.16.0", "@boost/core@^1.17.0": + version "1.17.0" + resolved "https://registry.yarnpkg.com/@boost/core/-/core-1.17.0.tgz#e4f86d55ff32d88874abb00adeb3328db26afacb" + integrity sha512-urroMHi447dMk9C5v3WAwaC1Xa8sThdhzkKsJoJXRSJbXRbC/0J3jKSVAzZDWVurCvHmZf1YDtH+jcKb24wcsQ== + dependencies: + "@boost/common" "^1.7.0" + "@boost/debug" "^1.4.0" + "@boost/event" "^1.2.0" + "@boost/internal" "^1.0.2" + "@boost/log" "^1.1.8" + "@boost/terminal" "^1.0.0" + "@boost/translate" "^1.3.3" "@types/debug" "^4.1.5" - "@types/yargs" "^15.0.4" - "@types/yargs-parser" "^15.0.0" + "@types/yargs" "^13.0.3" + "@types/yargs-parser" "^13.1.0" debug "^4.1.1" env-ci "^4.5.1" execa "^3.4.0" exit "^0.1.2" - fast-glob "^3.2.2" + fast-glob "^3.1.1" fs-extra "^8.1.0" - json5 "^2.1.2" + json5 "^2.1.1" lodash "^4.17.15" - optimal "^4.2.0" + optimal "^3.3.0" pluralize "^8.0.0" split "^1.0.1" - yargs-parser "^18.1.1" + yargs-parser "^16.1.0" -"@boost/debug@^1.4.4": - version "1.4.4" - resolved "https://registry.yarnpkg.com/@boost/debug/-/debug-1.4.4.tgz#7e3b32258ad24bca717792bb9d28fe49e8beb0a8" - integrity sha512-cQfksMzfPrz5iIlcDljIyPfcsGiCMQe3Lnwc12gDZrs1wBR+2r1RSxJy8Z5s0d8nGZe+9Ousr5JXKwdpOOm66w== +"@boost/debug@^1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@boost/debug/-/debug-1.4.0.tgz#873aa375ca08e2ec3d30e608420980c11e308605" + integrity sha512-PHDVGDkWnJjTyJydM5usORqHw8iTdL2w9CLzqfuMrms+/aydA1BDcZZI5zTfb33kDG7juEyx4uKXo9z+QN9KAA== dependencies: - "@boost/common" "^1.8.3" - "@boost/internal" "^1.1.0" + "@boost/common" "^1.7.0" + "@boost/internal" "^1.0.2" "@types/debug" "^4.1.5" debug "^4.1.1" execa "^3.4.0" - fast-glob "^3.2.2" + fast-glob "^3.1.1" -"@boost/event@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@boost/event/-/event-1.3.0.tgz#7bc989098aa6e2b819ed1904170056eb288396af" - integrity sha512-EszQ+bSw2lfobsE5pGEnFROXMcxqClXnJIohM/INO/8xjKvFeAVVpQKUEnYVbOcCWYVnwsJ7nBapXLA6Z6Zv7w== +"@boost/event@^1.1.1", "@boost/event@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@boost/event/-/event-1.2.0.tgz#85868feac814eda9c8f6406fb1a41e7f8c251e12" + integrity sha512-PmBeQJavjjGG1LAp91XhjbtUlxX/Davn0kWAmnr8pBVHrYTFuhu2cWA9ocI9zAy1NzwTKRBjmDTvpG6oQFW8Jw== dependencies: - "@boost/internal" "^1.1.0" + "@boost/internal" "^1.0.2" -"@boost/internal@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@boost/internal/-/internal-1.1.0.tgz#380107d83bbd4d38f4b020a2273d51ef1b73e0ae" - integrity sha512-dYrCHKqiuLz3u1p+ve1qoWGXOFDBqOlUgMV1is20GiTFxoJzaCJOdexDErC3hLQFCr3WsZ3IbKDb6cpFH6mD9Q== +"@boost/internal@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@boost/internal/-/internal-1.0.2.tgz#cbe47a6f97847eb53e1edb586f704da41bc046fe" + integrity sha512-XbxrSQGJGK4jqfrPOEz+B7v1wU0voCXF0cBafqfqTKibPNK0PzxWwCI3POY9faOWwwzMGr5XncPKtqe8dQwxHw== dependencies: chalk "^3.0.0" debug "^4.1.1" -"@boost/log@^1.1.12": - version "1.1.12" - resolved "https://registry.yarnpkg.com/@boost/log/-/log-1.1.12.tgz#40243804cc0a603a32df939dfb11470ce2945f23" - integrity sha512-yIhc0OFYuiuWsWsk6sEuET21unoWUHQAHRctEbEorpz51NZE9KPP7QA8rnPJ2hHN1Pl8NhFj6Ev0gygZzGDykA== +"@boost/log@^1.1.8": + version "1.1.8" + resolved "https://registry.yarnpkg.com/@boost/log/-/log-1.1.8.tgz#9cd4f8dae6554f5cc5c5f43c04e0158b277ac1c7" + integrity sha512-9DHvmhZlqlJmdKvCI31J5MlWnPOHRkCyA3+lDpcNj5cO6F+S45dOu+tBs1vb07fwKmnIKUfcfjZcaOeDFoe3mQ== dependencies: - "@boost/internal" "^1.1.0" - "@boost/translate" "^1.3.7" + "@boost/internal" "^1.0.2" + "@boost/translate" "^1.3.3" chalk "^3.0.0" -"@boost/terminal@^1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@boost/terminal/-/terminal-1.0.3.tgz#318c7765e5d5934378f1957b236c9ac1fa189704" - integrity sha512-r9PRBWzW5JBlfMkB0aVh/ighrxpFE/lQriQCBKqAYWFdglHCZtewkz8Bjxu8fPUuAR6dp/SqvFbS5S7Pukpo2Q== +"@boost/terminal@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@boost/terminal/-/terminal-1.0.0.tgz#b43c7ff127e2223ce474f633cb3c8773193e0eed" + integrity sha512-ysZBtH6pw3XbkiiqZICbJHlrSR7kKdtG4wFYuvNzygN/pXZoJx9bKf8OhF5gUaJfYqZno+TTGpQu6BrWu4Df+A== dependencies: - ansi-escapes "^4.3.1" + ansi-escapes "^4.3.0" ansi-regex "^5.0.0" chalk "^3.0.0" cli-truncate "^2.1.0" - figures "^3.2.0" + figures "^3.1.0" slice-ansi "^3.0.0" string-width "^4.2.0" strip-ansi "^6.0.0" - supports-hyperlinks "^2.1.0" - term-size "^2.2.0" + supports-hyperlinks "^2.0.0" + term-size "^2.1.1" wrap-ansi "^6.2.0" -"@boost/translate@^1.3.7": - version "1.3.7" - resolved "https://registry.yarnpkg.com/@boost/translate/-/translate-1.3.7.tgz#ecbf41bf8a68152371ccb2f065b3534696b0f297" - integrity sha512-FPhLX8zp7ZVyziIBckevHkKXjOMdRMiteFNMBJqOpACQyf7Hu4B3Q0VvAsP1AbLcCmxOJk5EBCi1MsRnsVDbqg== +"@boost/translate@^1.3.3": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@boost/translate/-/translate-1.3.3.tgz#54f450db9fd3750ef0e9f9c1a1f6bfd555df53b5" + integrity sha512-g9UoW0E/5EEs7z2VDpdPegH4K88ueZVcCy2WML3SthrZhD/HqFsZVjs06VErYNu65DnF1CWwJmT61jOgzSHeEg== dependencies: - "@boost/common" "^1.8.3" - "@boost/internal" "^1.1.0" - i18next "^19.3.3" + "@boost/common" "^1.7.0" + "@boost/internal" "^1.0.2" + i18next "^19.0.1" os-locale "^4.0.0" +"@chromaui/localtunnel@1.10.1": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@chromaui/localtunnel/-/localtunnel-1.10.1.tgz#34da7dab7055a16b1b9034a9eb7e3054ebec4b98" + integrity sha512-LXhAogVc9SOQ45+mtk2mhcQxW4bE8aadfx9WbDzuDlBXcDgDMFBaxOmd5VYsPxQYA+cLFkKeuKOpROzsZSEySA== + dependencies: + axios "0.19.0" + debug "^3.0.1" + openurl "1.1.1" + yargs "6.6.0" + "@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== + version "1.0.3" + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" + integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== dependencies: exec-sh "^0.3.2" minimist "^1.2.0" @@ -1432,9 +1450,9 @@ prop-types "^15.5.10" "@emotion/cache@^10.0.27", "@emotion/cache@^10.0.9": - version "10.0.29" - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.29.tgz#87e7e64f412c060102d589fe7c6dc042e6f9d1e0" - integrity sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ== + version "10.0.27" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.27.tgz#7895db204e2c1a991ae33d51262a3a44f6737303" + integrity sha512-Zp8BEpbMunFsTcqAK4D7YTm3MvCp1SekflSLJH8lze2fCcSZ/yMkXHo8kb3t1/1Tdd3hAqf3Fb7z9VZ+FMiC9w== dependencies: "@emotion/sheet" "0.9.4" "@emotion/stylis" "0.8.5" @@ -1442,9 +1460,9 @@ "@emotion/weak-memoize" "0.2.5" "@emotion/core@^10.0.20", "@emotion/core@^10.0.9": - version "10.0.28" - resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.28.tgz#bb65af7262a234593a9e952c041d0f1c9b9bef3d" - integrity sha512-pH8UueKYO5jgg0Iq+AmCLxBsvuGtvlmiDCOuv8fGNYn3cowFpLN98L8zO56U0H1PjDIyAlXymgL3Wu7u7v6hbA== + version "10.0.27" + resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.27.tgz#7c3f78be681ab2273f3bf11ca3e2edc4a9dd1fdc" + integrity sha512-XbD5R36pVbohQMnKfajHv43g8EbN4NHdF6Zh9zg/C0nr0jqwOw3gYnC07Xj3yG43OYSRyrGsoQ5qPwc8ycvLZw== dependencies: "@babel/runtime" "^7.5.5" "@emotion/cache" "^10.0.27" @@ -1462,15 +1480,15 @@ "@emotion/utils" "0.11.3" babel-plugin-emotion "^10.0.27" -"@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/hash@0.7.4": + version "0.7.4" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.7.4.tgz#f14932887422c9056b15a8d222a9074a7dfa2831" + integrity sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A== -"@emotion/is-prop-valid@0.8.8": - version "0.8.8" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" - integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== +"@emotion/is-prop-valid@0.8.6": + version "0.8.6" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.6.tgz#4757646f0a58e9dec614c47c838e7147d88c263c" + integrity sha512-mnZMho3Sq8BfzkYYRVc8ilQTnc8U02Ytp6J1AwM6taQStZ3AhsEJBX2LzhA/LJirNCwM2VtHL3VFIZ+sNJUgUQ== dependencies: "@emotion/memoize" "0.7.4" @@ -1479,12 +1497,12 @@ 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== +"@emotion/serialize@^0.11.15": + version "0.11.15" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.15.tgz#9a0f5873fb458d87d4f23e034413c12ed60a705a" + integrity sha512-YE+qnrmGwyR+XB5j7Bi+0GT1JWsdcjM/d4POu+TXkcnrRs4RFCCsi3d/Ebf+wSStHqAlTT2+dfd+b9N9EO2KBg== dependencies: - "@emotion/hash" "0.8.0" + "@emotion/hash" "0.7.4" "@emotion/memoize" "0.7.4" "@emotion/unitless" "0.7.5" "@emotion/utils" "0.11.3" @@ -1496,12 +1514,12 @@ 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== + version "10.0.27" + resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.27.tgz#d9efa307ae4e938fcc4d0596b40b7e8bc10f7c7c" + integrity sha512-ufHM/HhE3nr309hJG9jxuFt71r6aHn7p+bwXduFxcwPFEfBIqvmZUMtZ9YxIsY61PVwK3bp4G1XhaCzy9smVvw== dependencies: "@babel/runtime" "^7.5.5" - "@emotion/is-prop-valid" "0.8.8" + "@emotion/is-prop-valid" "0.8.6" "@emotion/serialize" "^0.11.15" "@emotion/utils" "0.11.3" @@ -1627,80 +1645,81 @@ resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== -"@jest/console@^25.2.3": - version "25.2.3" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-25.2.3.tgz#38ac19b916ff61457173799239472659e1a67c39" - integrity sha512-k+37B1aSvOt9tKHWbZZSOy1jdgzesB0bj96igCVUG1nAH1W5EoUfgc5EXbBVU08KSLvkVdWopLXaO3xfVGlxtQ== +"@jest/console@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-25.1.0.tgz#1fc765d44a1e11aec5029c08e798246bd37075ab" + integrity sha512-3P1DpqAMK/L07ag/Y9/Jup5iDEG9P4pRAuZiMQnU0JB3UOvCyYCjCoxr7sIA80SeyUCUKrr24fKAxVpmBgQonA== dependencies: - "@jest/source-map" "^25.2.1" + "@jest/source-map" "^25.1.0" chalk "^3.0.0" - jest-util "^25.2.3" + jest-util "^25.1.0" slash "^3.0.0" -"@jest/core@^25.2.4": - version "25.2.4" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-25.2.4.tgz#382ef80369d3311f1df79db1ee19e958ae95cdad" - integrity sha512-WcWYShl0Bqfcb32oXtjwbiR78D/djhMdJW+ulp4/bmHgeODcsieqUJfUH+kEv8M7VNV77E6jds5aA+WuGh1nmg== +"@jest/core@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-25.1.0.tgz#3d4634fc3348bb2d7532915d67781cdac0869e47" + integrity sha512-iz05+NmwCmZRzMXvMo6KFipW7nzhbpEawrKrkkdJzgytavPse0biEnCNr2wRlyCsp3SmKaEY+SGv7YWYQnIdig== dependencies: - "@jest/console" "^25.2.3" - "@jest/reporters" "^25.2.4" - "@jest/test-result" "^25.2.4" - "@jest/transform" "^25.2.4" - "@jest/types" "^25.2.3" + "@jest/console" "^25.1.0" + "@jest/reporters" "^25.1.0" + "@jest/test-result" "^25.1.0" + "@jest/transform" "^25.1.0" + "@jest/types" "^25.1.0" ansi-escapes "^4.2.1" chalk "^3.0.0" exit "^0.1.2" graceful-fs "^4.2.3" - jest-changed-files "^25.2.3" - jest-config "^25.2.4" - jest-haste-map "^25.2.3" - jest-message-util "^25.2.4" - jest-regex-util "^25.2.1" - jest-resolve "^25.2.3" - jest-resolve-dependencies "^25.2.4" - jest-runner "^25.2.4" - jest-runtime "^25.2.4" - jest-snapshot "^25.2.4" - jest-util "^25.2.3" - jest-validate "^25.2.3" - jest-watcher "^25.2.4" + jest-changed-files "^25.1.0" + jest-config "^25.1.0" + jest-haste-map "^25.1.0" + jest-message-util "^25.1.0" + jest-regex-util "^25.1.0" + jest-resolve "^25.1.0" + jest-resolve-dependencies "^25.1.0" + jest-runner "^25.1.0" + jest-runtime "^25.1.0" + jest-snapshot "^25.1.0" + jest-util "^25.1.0" + jest-validate "^25.1.0" + jest-watcher "^25.1.0" micromatch "^4.0.2" p-each-series "^2.1.0" - realpath-native "^2.0.0" + realpath-native "^1.1.0" rimraf "^3.0.0" slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/environment@^25.2.4": - version "25.2.4" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-25.2.4.tgz#74f4d8dd87b427434d0b822cde37bc0e78f3e28b" - integrity sha512-wA4xlhD19/gukkDpJ5HQsTle0pgnzI5qMFEjw267lpTDC8d9N7Ihqr5pI+l0p8Qn1SQhai+glSqxrGdzKy4jxw== +"@jest/environment@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-25.1.0.tgz#4a97f64770c9d075f5d2b662b5169207f0a3f787" + integrity sha512-cTpUtsjU4cum53VqBDlcW0E4KbQF03Cn0jckGPW/5rrE9tb+porD3+hhLtHAwhthsqfyF+bizyodTlsRA++sHg== dependencies: - "@jest/fake-timers" "^25.2.4" - "@jest/types" "^25.2.3" - jest-mock "^25.2.3" + "@jest/fake-timers" "^25.1.0" + "@jest/types" "^25.1.0" + jest-mock "^25.1.0" -"@jest/fake-timers@^25.2.4": - version "25.2.4" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-25.2.4.tgz#6821b6edde74fda2a42467ae92cc93095d4c9527" - integrity sha512-oC1TJiwfMcBttVN7Wz+VZnqEAgYTiEMu0QLOXpypR89nab0uCB31zm/QeBZddhSstn20qe3yqOXygp6OwvKT/Q== +"@jest/fake-timers@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-25.1.0.tgz#a1e0eff51ffdbb13ee81f35b52e0c1c11a350ce8" + integrity sha512-Eu3dysBzSAO1lD7cylZd/CVKdZZ1/43SF35iYBNV1Lvvn2Undp3Grwsv8PrzvbLhqwRzDd4zxrY4gsiHc+wygQ== dependencies: - "@jest/types" "^25.2.3" - jest-message-util "^25.2.4" - jest-mock "^25.2.3" - jest-util "^25.2.3" + "@jest/types" "^25.1.0" + jest-message-util "^25.1.0" + jest-mock "^25.1.0" + jest-util "^25.1.0" lolex "^5.0.0" -"@jest/reporters@^25.2.4": - version "25.2.4" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-25.2.4.tgz#aa01c20aab217150d3a6080d5c98ce0bf34b17ed" - integrity sha512-VHbLxM03jCc+bTLOluW/IqHR2G0Cl0iATwIQbuZtIUast8IXO4fD0oy4jpVGpG5b20S6REA8U3BaQoCW/CeVNQ== +"@jest/reporters@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-25.1.0.tgz#9178ecf136c48f125674ac328f82ddea46e482b0" + integrity sha512-ORLT7hq2acJQa8N+NKfs68ZtHFnJPxsGqmofxW7v7urVhzJvpKZG9M7FAcgh9Ee1ZbCteMrirHA3m5JfBtAaDg== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^25.2.3" - "@jest/test-result" "^25.2.4" - "@jest/transform" "^25.2.4" - "@jest/types" "^25.2.3" + "@jest/console" "^25.1.0" + "@jest/environment" "^25.1.0" + "@jest/test-result" "^25.1.0" + "@jest/transform" "^25.1.0" + "@jest/types" "^25.1.0" chalk "^3.0.0" collect-v8-coverage "^1.0.0" exit "^0.1.2" @@ -1710,10 +1729,11 @@ istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" istanbul-reports "^3.0.0" - jest-haste-map "^25.2.3" - jest-resolve "^25.2.3" - jest-util "^25.2.3" - jest-worker "^25.2.1" + jest-haste-map "^25.1.0" + jest-resolve "^25.1.0" + jest-runtime "^25.1.0" + jest-util "^25.1.0" + jest-worker "^25.1.0" slash "^3.0.0" source-map "^0.6.0" string-length "^3.1.0" @@ -1722,62 +1742,71 @@ optionalDependencies: node-notifier "^6.0.0" -"@jest/source-map@^25.2.1": - version "25.2.1" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-25.2.1.tgz#b62ecf8ae76170b08eff8859b56eb7576df34ab8" - integrity sha512-PgScGJm1U27+9Te/cxP4oUFqJ2PX6NhBL2a6unQ7yafCgs8k02c0LSyjSIx/ao0AwcAdCczfAPDf5lJ7zoB/7A== +"@jest/source-map@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-25.1.0.tgz#b012e6c469ccdbc379413f5c1b1ffb7ba7034fb0" + integrity sha512-ohf2iKT0xnLWcIUhL6U6QN+CwFWf9XnrM2a6ybL9NXxJjgYijjLSitkYHIdzkd8wFliH73qj/+epIpTiWjRtAA== dependencies: callsites "^3.0.0" graceful-fs "^4.2.3" source-map "^0.6.0" -"@jest/test-result@^25.2.4": - version "25.2.4" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-25.2.4.tgz#8fc9eac58e82eb2a82e4058e68c3814f98f59cf5" - integrity sha512-AI7eUy+q2lVhFnaibDFg68NGkrxVWZdD6KBr9Hm6EvN0oAe7GxpEwEavgPfNHQjU2mi6g+NsFn/6QPgTUwM1qg== +"@jest/test-result@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-25.1.0.tgz#847af2972c1df9822a8200457e64be4ff62821f7" + integrity sha512-FZzSo36h++U93vNWZ0KgvlNuZ9pnDnztvaM7P/UcTx87aPDotG18bXifkf1Ji44B7k/eIatmMzkBapnAzjkJkg== dependencies: - "@jest/console" "^25.2.3" - "@jest/transform" "^25.2.4" - "@jest/types" "^25.2.3" + "@jest/console" "^25.1.0" + "@jest/transform" "^25.1.0" + "@jest/types" "^25.1.0" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-sequencer@^25.2.4": - version "25.2.4" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-25.2.4.tgz#28364aeddec140c696324114f63570f3de536c87" - integrity sha512-TEZm/Rkd6YgskdpTJdYLBtu6Gc11tfWPuSpatq0duH77ekjU8dpqX2zkPdY/ayuHxztV5LTJoV5BLtI9mZfXew== +"@jest/test-sequencer@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-25.1.0.tgz#4df47208542f0065f356fcdb80026e3c042851ab" + integrity sha512-WgZLRgVr2b4l/7ED1J1RJQBOharxS11EFhmwDqknpknE0Pm87HLZVS2Asuuw+HQdfQvm2aXL2FvvBLxOD1D0iw== dependencies: - "@jest/test-result" "^25.2.4" - jest-haste-map "^25.2.3" - jest-runner "^25.2.4" - jest-runtime "^25.2.4" + "@jest/test-result" "^25.1.0" + jest-haste-map "^25.1.0" + jest-runner "^25.1.0" + jest-runtime "^25.1.0" -"@jest/transform@^25.2.4": - version "25.2.4" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.2.4.tgz#34336f37f13f62f7d1f5b93d5d150ba9eb3e11b9" - integrity sha512-6eRigvb+G6bs4kW5j1/y8wu4nCrmVuIe0epPBbiWaYlwawJ8yi1EIyK3d/btDqmBpN5GpN4YhR6iPPnDmkYdTA== +"@jest/transform@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.1.0.tgz#221f354f512b4628d88ce776d5b9e601028ea9da" + integrity sha512-4ktrQ2TPREVeM+KxB4zskAT84SnmG1vaz4S+51aTefyqn3zocZUnliLLm5Fsl85I3p/kFPN4CRp1RElIfXGegQ== dependencies: "@babel/core" "^7.1.0" - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" babel-plugin-istanbul "^6.0.0" chalk "^3.0.0" convert-source-map "^1.4.0" fast-json-stable-stringify "^2.0.0" graceful-fs "^4.2.3" - jest-haste-map "^25.2.3" - jest-regex-util "^25.2.1" - jest-util "^25.2.3" + jest-haste-map "^25.1.0" + jest-regex-util "^25.1.0" + jest-util "^25.1.0" micromatch "^4.0.2" pirates "^4.0.1" - realpath-native "^2.0.0" + realpath-native "^1.1.0" slash "^3.0.0" source-map "^0.6.1" write-file-atomic "^3.0.0" -"@jest/types@^25.1.0", "@jest/types@^25.2.3": - version "25.2.3" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.2.3.tgz#035c4fb94e2da472f359ff9a211915d59987f6b6" - integrity sha512-6oLQwO9mKif3Uph3RX5J1i3S7X7xtDHWBaaaoeKw8hOzV6YUd0qDcYcHZ6QXMHDIzSr7zzrEa51o2Ovlj6AtKQ== +"@jest/types@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" + integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^13.0.0" + +"@jest/types@^25.1.0": + version "25.1.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.1.0.tgz#b26831916f0d7c381e11dbb5e103a72aed1b4395" + integrity sha512-VpOtt7tCrgvamWZh1reVsGADujKigBUFTi19mlRjqEGsE8qH4r3s+skY33dNdXOwyZIvuftZ5tqdF1IgsMejMA== dependencies: "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^1.1.1" @@ -2519,34 +2548,13 @@ dependencies: "@octokit/types" "^2.0.0" -"@octokit/core@^2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-2.4.3.tgz#f51c0c228e6aa01253f9452ba5a25dc20aee8577" - integrity sha512-9T91nYeBB7+PNK3oxOuA+6DXCPRvhJ80ke+NqhXirBjVtNepTKFJXoWPqguRSBQ+dkEVA8dZJMxfFzjz9yhiuA== - dependencies: - "@octokit/auth-token" "^2.4.0" - "@octokit/graphql" "^4.3.1" - "@octokit/request" "^5.3.1" - "@octokit/types" "^2.0.0" - before-after-hook "^2.1.0" - universal-user-agent "^5.0.0" - -"@octokit/endpoint@^6.0.0": - version "6.0.0" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.0.tgz#4c7acd79ab72df78732a7d63b09be53ec5a2230b" - integrity sha512-3nx+MEYoZeD0uJ+7F/gvELLvQJzLXhep2Az0bBSXagbApDvDW0LWwpnAIY/hb0Jwe17A0fJdz0O12dPh05cj7A== +"@octokit/endpoint@^5.5.0": + version "5.5.1" + resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-5.5.1.tgz#2eea81e110ca754ff2de11c79154ccab4ae16b3f" + integrity sha512-nBFhRUb5YzVTCX/iAK1MgQ4uWo89Gu0TH00qQHoYRCsE12dWcG1OiLd7v2EIo2+tpUKPMOQ62QFy9hy9Vg2ULg== dependencies: "@octokit/types" "^2.0.0" is-plain-object "^3.0.0" - universal-user-agent "^5.0.0" - -"@octokit/graphql@^4.3.1": - version "4.3.1" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.3.1.tgz#9ee840e04ed2906c7d6763807632de84cdecf418" - integrity sha512-hCdTjfvrK+ilU2keAdqNBWOk+gm1kai1ZcdjRfB30oA3/T6n53UVJb7w0L5cR3/rhU91xT3HSqCd+qbvH06yxA== - dependencies: - "@octokit/request" "^5.3.0" - "@octokit/types" "^2.0.0" universal-user-agent "^4.0.0" "@octokit/plugin-enterprise-rest@^3.6.1": @@ -2554,82 +2562,35 @@ resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-3.6.2.tgz#74de25bef21e0182b4fa03a8678cd00a4e67e561" integrity sha512-3wF5eueS5OHQYuAEudkpN+xVeUsg8vYEMMenEzLphUZ7PRZ8OJtDcsreL3ad9zxXmBbaFWzLmFcdob5CLyZftA== -"@octokit/plugin-paginate-rest@^1.1.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-1.1.2.tgz#004170acf8c2be535aba26727867d692f7b488fc" - integrity sha512-jbsSoi5Q1pj63sC16XIUboklNw+8tL9VOnJsWycWYR78TKss5PVpIPb1TUUcMQ+bBh7cY579cVAWmf5qG+dw+Q== - dependencies: - "@octokit/types" "^2.0.1" - -"@octokit/plugin-paginate-rest@^2.0.0": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.0.2.tgz#fee7a81a4cc7d03784aaf9225499dd6e27f6d01e" - integrity sha512-HzODcSUt9mjErly26TlTOGZrhf9bmF/FEDQ2zln1izhgmIV6ulsjsHmgmR4VZ0wzVr/m52Eb6U2XuyS8fkcR1A== - dependencies: - "@octokit/types" "^2.0.1" - -"@octokit/plugin-request-log@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz#eef87a431300f6148c39a7f75f8cfeb218b2547e" - integrity sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw== - -"@octokit/plugin-rest-endpoint-methods@2.4.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-2.4.0.tgz#3288ecf5481f68c494dd0602fc15407a59faf61e" - integrity sha512-EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ== - dependencies: - "@octokit/types" "^2.0.1" - deprecation "^2.3.1" - -"@octokit/plugin-rest-endpoint-methods@3.4.0": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.4.0.tgz#27b1dac7fba4d0d6e488967919b6a5bd3595ffbc" - integrity sha512-Tvctk0u5SVrSLAzi8SLo0KrLSBl5biAHBgWy3L65vsbO/2fjzr62HVkoDPyr+WRT+eHhhqpKAERF3dQWOIUOvQ== - dependencies: - "@octokit/types" "^2.0.1" - deprecation "^2.3.1" - -"@octokit/request-error@^1.0.2": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-1.2.1.tgz#ede0714c773f32347576c25649dc013ae6b31801" - integrity sha512-+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA== - dependencies: - "@octokit/types" "^2.0.0" - deprecation "^2.0.0" - once "^1.4.0" - -"@octokit/request-error@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.0.0.tgz#94ca7293373654400fbb2995f377f9473e00834b" - integrity sha512-rtYicB4Absc60rUv74Rjpzek84UbVHGHJRu4fNVlZ1mCcyUPPuzFfG9Rn6sjHrd95DEsmjSt1Axlc699ZlbDkw== +"@octokit/request-error@^1.0.1", "@octokit/request-error@^1.0.2": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-1.2.0.tgz#a64d2a9d7a13555570cd79722de4a4d76371baaa" + integrity sha512-DNBhROBYjjV/I9n7A8kVkmQNkqFAMem90dSxqvPq57e2hBr7mNTX98y3R2zDpqMQHVRpBDjsvsfIGgBzy+4PAg== dependencies: "@octokit/types" "^2.0.0" deprecation "^2.0.0" once "^1.4.0" -"@octokit/request@^5.2.0", "@octokit/request@^5.3.0", "@octokit/request@^5.3.1": - version "5.3.4" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.3.4.tgz#fbc950bf785d59da3b0399fc6d042c8cf52e2905" - integrity sha512-qyj8G8BxQyXjt9Xu6NvfvOr1E0l35lsXtwm3SopsYg/JWXjlsnwqLc8rsD2OLguEL/JjLfBvrXr4az7z8Lch2A== +"@octokit/request@^5.2.0": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.3.1.tgz#3a1ace45e6f88b1be4749c5da963b3a3b4a2f120" + integrity sha512-5/X0AL1ZgoU32fAepTfEoggFinO3rxsMLtzhlUX+RctLrusn/CApJuGFCd0v7GMFhF+8UiCsTTfsu7Fh1HnEJg== dependencies: - "@octokit/endpoint" "^6.0.0" - "@octokit/request-error" "^2.0.0" + "@octokit/endpoint" "^5.5.0" + "@octokit/request-error" "^1.0.1" "@octokit/types" "^2.0.0" deprecation "^2.0.0" is-plain-object "^3.0.0" node-fetch "^2.3.0" once "^1.4.0" - universal-user-agent "^5.0.0" + universal-user-agent "^4.0.0" "@octokit/rest@^16.28.4": - version "16.43.1" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-16.43.1.tgz#3b11e7d1b1ac2bbeeb23b08a17df0b20947eda6b" - integrity sha512-gfFKwRT/wFxq5qlNjnW2dh+qh74XgTQ2B179UX5K1HYCluioWj8Ndbgqw2PVqa1NnVJkGHp2ovMpVn/DImlmkw== + version "16.38.1" + resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-16.38.1.tgz#be24e0faa7d0bdb9459fbc089ec866ed11774b72" + integrity sha512-zyNFx+/Bd1EXt7LQjfrc6H4wryBQ/oDuZeZhGMBSFr1eMPFDmpEweFQR3R25zjKwBQpDY7L5GQO6A3XSaOfV1w== dependencies: "@octokit/auth-token" "^2.4.0" - "@octokit/plugin-paginate-rest" "^1.1.1" - "@octokit/plugin-request-log" "^1.0.0" - "@octokit/plugin-rest-endpoint-methods" "2.4.0" "@octokit/request" "^5.2.0" "@octokit/request-error" "^1.0.2" atob-lite "^2.0.0" @@ -2643,32 +2604,23 @@ once "^1.4.0" universal-user-agent "^4.0.0" -"@octokit/rest@^17.1.2": - version "17.1.4" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-17.1.4.tgz#b03eb97635de62b48428f998ad1cb9244edd2d10" - integrity sha512-LGghhepxoXyvi7ew0OdedrlwXQog8gvTbcdXoQ6RDKnzoYW2rBpcqeWC4fTuPUp9K0UEykcMix8kFnQ5b+64JQ== - dependencies: - "@octokit/core" "^2.4.3" - "@octokit/plugin-paginate-rest" "^2.0.0" - "@octokit/plugin-request-log" "^1.0.0" - "@octokit/plugin-rest-endpoint-methods" "3.4.0" - -"@octokit/types@^2.0.0", "@octokit/types@^2.0.1": - version "2.5.1" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.5.1.tgz#22563b3bb50034bea3176eac1860340c5e812e2a" - integrity sha512-q4Wr7RexkPRrkQpXzUYF5Fj/14Mr65RyOHj6B9d/sQACpqGcStkHZj4qMEtlMY5SnD/69jlL9ItGPbDM0dR/dA== +"@octokit/types@^2.0.0": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.1.1.tgz#77e80d1b663c5f1f829e5377b728fa3c4fe5a97d" + integrity sha512-89LOYH+d/vsbDX785NOfLxTW88GjNd0lWRz1DVPVsZgg9Yett5O+3MOvwo7iHgvUwbFz0mf/yPIjBkUbs4kxoQ== dependencies: "@types/node" ">= 8" "@reach/router@^1.2.1": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.3.tgz#58162860dce6c9449d49be86b0561b5ef46d80db" - integrity sha512-gOIAiFhWdiVGSVjukKeNKkCRBLmnORoTPyBihI/jLunICPgxdP30DroAvPQuf1eVfQbfGJQDJkwhJXsNPMnVWw== + version "1.2.1" + resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.2.1.tgz#34ae3541a5ac44fa7796e5506a5d7274a162be4e" + integrity sha512-kTaX08X4g27tzIFQGRukaHmNbtMYDS3LEWIS8+l6OayGIw6Oyo1HIF/JzeuR2FoF9z6oV+x/wJSVSq4v8tcUGQ== dependencies: - create-react-context "0.3.0" + create-react-context "^0.2.1" invariant "^2.2.3" prop-types "^15.6.1" react-lifecycles-compat "^3.0.4" + warning "^3.0.0" "@samverschueren/stream-to-observable@^0.3.0": version "0.3.0" @@ -2678,9 +2630,9 @@ any-observable "^0.3.0" "@sinonjs/commons@^1", "@sinonjs/commons@^1.6.0", "@sinonjs/commons@^1.7.0": - version "1.7.1" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.1.tgz#da5fd19a5f71177a53778073978873964f49acf1" - integrity sha512-Debi3Baff1Qu1Unc3mjJ96MgpbwTn43S1+9yJ0llWygPwDNu2aaWBD6yc9y/Z8XDRNhx7U+u2UDg2OGQXkclUQ== + version "1.7.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.0.tgz#f90ffc52a2e519f018b13b6c4da03cbff36ebed6" + integrity sha512-qbk9AP+cZUsKdW1GJsBpxPKFmCJ0T8swwzVje3qFd+AkQb74Q/tiuzrdfFg8AD2g5HH/XbE/I8Uc1KYHVYWfhg== dependencies: type-detect "4.0.8" @@ -2706,17 +2658,17 @@ resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz#8da5c6530915653f3a1f38fd5f101d8c3f8079c5" integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ== -"@storybook/addon-actions@^5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-5.3.18.tgz#e3e3b1475cebc9bdd2d563822fba9ac662b2601a" - integrity sha512-jdBVCcfyWin274Lkwg5cL+1fJ651NCuIWxuJVsmHQtIl2xTjf2MyoMoKQZNdt4xtE+W9w+rS4bYt04elrizThg== - dependencies: - "@storybook/addons" "5.3.18" - "@storybook/api" "5.3.18" - "@storybook/client-api" "5.3.18" - "@storybook/components" "5.3.18" - "@storybook/core-events" "5.3.18" - "@storybook/theming" "5.3.18" +"@storybook/addon-actions@^5.0.6": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-5.3.17.tgz#ec7ae8fa25ef211c2a3302b6ac1d271a6247f767" + integrity sha512-06HQSBqWFyXcqV418Uv3oMHomNy9g3uCt0FHrqY3BAc7PldY1X0tW65oy//uBueaRaYKdhtRrrjfXRaPQWmDbA== + dependencies: + "@storybook/addons" "5.3.17" + "@storybook/api" "5.3.17" + "@storybook/client-api" "5.3.17" + "@storybook/components" "5.3.17" + "@storybook/core-events" "5.3.17" + "@storybook/theming" "5.3.17" core-js "^3.0.1" fast-deep-equal "^2.0.1" global "^4.3.2" @@ -2726,38 +2678,17 @@ react-inspector "^4.0.0" uuid "^3.3.2" -"@storybook/addon-info@^5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/addon-info/-/addon-info-5.3.18.tgz#2b02c43eeb79770781eea82104c32a4f12a72da0" - integrity sha512-6j+XlBrgHl1ZaFRSFdMYVeQTDWWs1Xhz2jflrLCLY4Y99+pLFBUigzp2EByfIVF9tiDfPwNcFcPo5UvQ+kTwOg== - dependencies: - "@storybook/addons" "5.3.18" - "@storybook/client-logger" "5.3.18" - "@storybook/components" "5.3.18" - "@storybook/theming" "5.3.18" - core-js "^3.0.1" - global "^4.3.2" - marksy "^8.0.0" - nested-object-assign "^1.0.3" - prop-types "^15.7.2" - react "^16.8.3" - react-addons-create-fragment "^15.6.2" - react-element-to-jsx-string "^14.0.2" - react-is "^16.8.3" - react-lifecycles-compat "^3.0.4" - util-deprecate "^1.0.2" - -"@storybook/addon-knobs@^5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/addon-knobs/-/addon-knobs-5.3.18.tgz#60365bb179699cd8dc91df8be947469266012847" - integrity sha512-X0WxGKoso3j5mS4c4enM8BvCjbO6Wwfxc++swQTqtANpBZ8k+w0piiEF1fiJf+ssgEAWe5brgIqnQ9kiBGLqKA== - dependencies: - "@storybook/addons" "5.3.18" - "@storybook/api" "5.3.18" - "@storybook/client-api" "5.3.18" - "@storybook/components" "5.3.18" - "@storybook/core-events" "5.3.18" - "@storybook/theming" "5.3.18" +"@storybook/addon-knobs@^5.2.3": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/addon-knobs/-/addon-knobs-5.3.9.tgz#b51be01731dd31ad1b883276acdbeabedc0b7095" + integrity sha512-blMiksvApq4lGiZM1A8FpwnIOXC0PsBXja0LkWQDDHN+snREzjZV85XLrYdz688RhN/7MTXZXMgsvRMSug/r3g== + dependencies: + "@storybook/addons" "5.3.9" + "@storybook/api" "5.3.9" + "@storybook/client-api" "5.3.9" + "@storybook/components" "5.3.9" + "@storybook/core-events" "5.3.9" + "@storybook/theming" "5.3.9" "@types/react-color" "^3.0.1" copy-to-clipboard "^3.0.8" core-js "^3.0.1" @@ -2771,47 +2702,86 @@ react-lifecycles-compat "^3.0.4" react-select "^3.0.8" -"@storybook/addon-links@^5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-5.3.18.tgz#6b4aec83e158c000221bfe1f43e4a473f0727193" - integrity sha512-rDpsAQUr60BEM83TBh7mwKjaZvqTR+CAAMLAxXN+J8DMoOjymjd2sjq4UVJsOQVTnw3wjIc4+xpAL/eYqkJAIQ== +"@storybook/addon-links@^5.0.6": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-5.3.9.tgz#adee13173105cb9f2d6c682bcbc6c8b471a4ee47" + integrity sha512-QvAvZNIn3EqWc2YF9WS5MGf6MoisfQKLFC09iudSySLBN+L5JHCx5zCzMydPgN8nliE6sJMAr7VrOjCWdQuEJg== dependencies: - "@storybook/addons" "5.3.18" - "@storybook/client-logger" "5.3.18" - "@storybook/core-events" "5.3.18" + "@storybook/addons" "5.3.9" + "@storybook/client-logger" "5.3.9" + "@storybook/core-events" "5.3.9" "@storybook/csf" "0.0.1" - "@storybook/router" "5.3.18" + "@storybook/router" "5.3.9" core-js "^3.0.1" global "^4.3.2" prop-types "^15.7.2" qs "^6.6.0" ts-dedent "^1.1.0" -"@storybook/addons@5.3.18", "@storybook/addons@^5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-5.3.18.tgz#5cbba6407ef7a802041c5ee831473bc3bed61f64" - integrity sha512-ZQjDgTUDFRLvAiBg2d8FgPgghfQ+9uFyXQbtiGlTBLinrPCeQd7J86qiUES0fcGoohCCw0wWKtvB0WF2z1XNDg== +"@storybook/addons@5.3.17", "@storybook/addons@^5.0.6": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-5.3.17.tgz#8efab65904040b0b8578eedc9a5772dbcbf6fa83" + integrity sha512-zg6O1bmffRsHXJOWAnSD2O3tPnVMoD8Yfu+a5zBVXDiUP1E/TGzgjjjYBUUCU3yQg1Ted5rIn4o6ql/rZNNlgA== + dependencies: + "@storybook/api" "5.3.17" + "@storybook/channels" "5.3.17" + "@storybook/client-logger" "5.3.17" + "@storybook/core-events" "5.3.17" + core-js "^3.0.1" + global "^4.3.2" + util-deprecate "^1.0.2" + +"@storybook/addons@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-5.3.9.tgz#f2492de356e0cd38e3da357f4dafa058a4756e36" + integrity sha512-LrlO6nQ4S6yroFuG9Pn1rXhg0AjT/jx7UKZjZTJNqo4ZdPy88QhQO0ClbOVL+KhUiY773zEBYIk0BvwA3WYtSQ== + dependencies: + "@storybook/api" "5.3.9" + "@storybook/channels" "5.3.9" + "@storybook/client-logger" "5.3.9" + "@storybook/core-events" "5.3.9" + core-js "^3.0.1" + global "^4.3.2" + util-deprecate "^1.0.2" + +"@storybook/api@5.3.17": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/api/-/api-5.3.17.tgz#1c0dad3309afef6b0a5585cb59c65824fb4d2721" + integrity sha512-G40jtXFY10hQo6GSw5JeFYt41loD4+7s0uU18Rm6lfa/twOgp6vqqyDCWDvpRRxRBB5uDIKKHLt13X9gWe8tQQ== dependencies: - "@storybook/api" "5.3.18" - "@storybook/channels" "5.3.18" - "@storybook/client-logger" "5.3.18" - "@storybook/core-events" "5.3.18" + "@reach/router" "^1.2.1" + "@storybook/channels" "5.3.17" + "@storybook/client-logger" "5.3.17" + "@storybook/core-events" "5.3.17" + "@storybook/csf" "0.0.1" + "@storybook/router" "5.3.17" + "@storybook/theming" "5.3.17" + "@types/reach__router" "^1.2.3" core-js "^3.0.1" + fast-deep-equal "^2.0.1" global "^4.3.2" + lodash "^4.17.15" + memoizerific "^1.11.3" + prop-types "^15.6.2" + react "^16.8.3" + semver "^6.0.0" + shallow-equal "^1.1.0" + store2 "^2.7.1" + telejson "^3.2.0" util-deprecate "^1.0.2" -"@storybook/api@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/api/-/api-5.3.18.tgz#95582ab90d947065e0e34ed603650a3630dcbd16" - integrity sha512-QXaccNCARHzPWOuxYndiebGWBZmwiUvRgB9ji0XTJBS3y8K0ZPb5QyuqiKPaEWUj8dBA8rzdDtkW3Yt95Namaw== +"@storybook/api@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/api/-/api-5.3.9.tgz#090119c6fd4082442e926a434d3d171535ec6784" + integrity sha512-ix6WS880K5C3H4wjEN0IKqIlVNV0f7zHgvyRf8maL1UFEya5wkBkZg9REDOiCH0tSByzRN73NmPdII3Q1FoAvA== dependencies: "@reach/router" "^1.2.1" - "@storybook/channels" "5.3.18" - "@storybook/client-logger" "5.3.18" - "@storybook/core-events" "5.3.18" + "@storybook/channels" "5.3.9" + "@storybook/client-logger" "5.3.9" + "@storybook/core-events" "5.3.9" "@storybook/csf" "0.0.1" - "@storybook/router" "5.3.18" - "@storybook/theming" "5.3.18" + "@storybook/router" "5.3.9" + "@storybook/theming" "5.3.9" "@types/reach__router" "^1.2.3" core-js "^3.0.1" fast-deep-equal "^2.0.1" @@ -2826,34 +2796,75 @@ telejson "^3.2.0" util-deprecate "^1.0.2" -"@storybook/channel-postmessage@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-5.3.18.tgz#93d46740b5cc9b36ddd073f0715b54c4959953bf" - integrity sha512-awxBW/aVfNtY9QvYZgsPaMXgUpC2+W3vEyQcl/w4ce0YVH+7yWx3wt3Ku49lQwxZwDrxP3QoC0U+mkPc9hBJwA== +"@storybook/channel-postmessage@5.3.17": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-5.3.17.tgz#807b6316cd0e52d9f27363d5092ad1cd896b694c" + integrity sha512-1aSQNeO2+roPRgMFjW3AWTO3uS93lbCMUTYCBdi20md4bQ9SutJy33rynCQcWuMj1prCQ2Ekz4BGhdcIQVKlzg== + dependencies: + "@storybook/channels" "5.3.17" + "@storybook/client-logger" "5.3.17" + core-js "^3.0.1" + global "^4.3.2" + telejson "^3.2.0" + +"@storybook/channel-postmessage@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-5.3.9.tgz#3846ae7ea5bc2fe36b1ef64fbc215f480cf8a189" + integrity sha512-gMzPwxTsN0Xgpd01ERlC2lpJzzeOMgP+eSruHh1pwieplL8CEctn8HV1eXrAtF/JtFIXjd4jkoRHAwRptHuJ2w== dependencies: - "@storybook/channels" "5.3.18" - "@storybook/client-logger" "5.3.18" + "@storybook/channels" "5.3.9" + "@storybook/client-logger" "5.3.9" core-js "^3.0.1" global "^4.3.2" telejson "^3.2.0" -"@storybook/channels@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-5.3.18.tgz#490c9eaa8292b0571c0f665052b12addf7c35f21" - integrity sha512-scP/6td/BJSEOgfN+qaYGDf3E793xye7tIw6W+sYqwg+xdMFO39wVXgVZNpQL6sLEwpJZTaPywCjC6p6ksErqQ== +"@storybook/channels@5.3.17": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-5.3.17.tgz#74eccb10c2395499da6a290bcd0272d6d6c7c5b2" + integrity sha512-5hlBRbyk+YxC4KgecYG8wWwB2v1BzRJXhSlemFDOQk9wx37gVpne+rBydEtNFO4InmaZf6tKbBcpH0wBFLdWYA== + dependencies: + core-js "^3.0.1" + +"@storybook/channels@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-5.3.9.tgz#7ee8f6e6f4c9465227120d6711805b5e6862107f" + integrity sha512-8JFTDTI4hQyAJPDBgwnK99lye2oyxEheko4vD2Pv5M7LblcFBZJuCRhO5wiBsgHi5eV4srSD9kuBsPkYSxB2Xw== + dependencies: + core-js "^3.0.1" + +"@storybook/client-api@5.3.17": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-5.3.17.tgz#fc1d247caf267ebcc6ddf957fca7e02ae752d99e" + integrity sha512-oe55FPTGVL2k+j45eCN3oE7ePkE4VpgUQ/dhJbjU0R2L+HyRyBhd0wnMYj1f5E8uVNbtjFYAtbjjgcf1R1imeg== dependencies: + "@storybook/addons" "5.3.17" + "@storybook/channel-postmessage" "5.3.17" + "@storybook/channels" "5.3.17" + "@storybook/client-logger" "5.3.17" + "@storybook/core-events" "5.3.17" + "@storybook/csf" "0.0.1" + "@types/webpack-env" "^1.15.0" core-js "^3.0.1" + eventemitter3 "^4.0.0" + global "^4.3.2" + is-plain-object "^3.0.0" + lodash "^4.17.15" + memoizerific "^1.11.3" + qs "^6.6.0" + stable "^0.1.8" + ts-dedent "^1.1.0" + util-deprecate "^1.0.2" -"@storybook/client-api@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-5.3.18.tgz#e71041796f95888de0e4524734418e6b120b060a" - integrity sha512-QiXTDUpjdyW19BlocLw07DrkOnEzVaWGJcRze2nSs29IKKuq1Ncv2LOAZt6ySSq0PmIKsjBou3bmS1/aXmDMdw== +"@storybook/client-api@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-5.3.9.tgz#43ae2651bf303e832e97c014fd6c77a523669fd9" + integrity sha512-c2AO8R/CKJfOGCQxWva6te7Fhlbs+6nzBj14rnb+BC6e7zORuozLNugGXTc7w2aR7manI86WFjSWWfzX64Jr3w== dependencies: - "@storybook/addons" "5.3.18" - "@storybook/channel-postmessage" "5.3.18" - "@storybook/channels" "5.3.18" - "@storybook/client-logger" "5.3.18" - "@storybook/core-events" "5.3.18" + "@storybook/addons" "5.3.9" + "@storybook/channel-postmessage" "5.3.9" + "@storybook/channels" "5.3.9" + "@storybook/client-logger" "5.3.9" + "@storybook/core-events" "5.3.9" "@storybook/csf" "0.0.1" "@types/webpack-env" "^1.15.0" core-js "^3.0.1" @@ -2867,20 +2878,27 @@ ts-dedent "^1.1.0" util-deprecate "^1.0.2" -"@storybook/client-logger@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-5.3.18.tgz#27c9d09d788965db0164be6e168bc3f03adbf88f" - integrity sha512-RZjxw4uqZX3Yk27IirbB/pQG+wRsQSSRlKqYa8KQ5bSanm4IrcV9VA1OQbuySW9njE+CexAnakQJ/fENdmurNg== +"@storybook/client-logger@5.3.17": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-5.3.17.tgz#bf9c7ef52da75a5c1f2c5d74724442224deea6e4" + integrity sha512-GYYvVGIOs+fq11LXXy7x2sr3hhC9LMI1jtIckjKV1dsY9MJ5g22M+Wl5Iw4nf6VMWsqcN9LSlYE+u/H+Q2uCHw== + dependencies: + core-js "^3.0.1" + +"@storybook/client-logger@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-5.3.9.tgz#06654be9caa8d37366270b0426c2d5acb217f504" + integrity sha512-EbA9id/Fk2BZkIWGSICYh+Iu4j7JFRZce4Lp69/MPmHpQk8YKnjL6NdxGsHj/83OFQ9CCbtqNOBzBdtiCy/23w== dependencies: core-js "^3.0.1" -"@storybook/components@5.3.18", "@storybook/components@^5.2.5": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/components/-/components-5.3.18.tgz#528f6ab1660981e948993a04b407a6fad7751589" - integrity sha512-LIN4aVCCDY7klOwtuqQhfYz4tHaMADhXEzZpij+3r8N68Inck6IJ1oo9A9umXQPsTioQi8e6FLobH1im90j/2A== +"@storybook/components@5.3.17", "@storybook/components@^5.2.5": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/components/-/components-5.3.17.tgz#287430fc9c5f59b1d3590b50b3c7688355b22639" + integrity sha512-M5oqbzcqFX4VDNI8siT3phT7rmFwChQ/xPwX9ygByBsZCoNuLMzafavfTOhZvxCPiliFbBxmxtK/ibCsSzuKZg== dependencies: - "@storybook/client-logger" "5.3.18" - "@storybook/theming" "5.3.18" + "@storybook/client-logger" "5.3.17" + "@storybook/theming" "5.3.17" "@types/react-syntax-highlighter" "11.0.4" "@types/react-textarea-autosize" "^4.3.3" core-js "^3.0.1" @@ -2901,33 +2919,67 @@ simplebar-react "^1.0.0-alpha.6" ts-dedent "^1.1.0" -"@storybook/core-events@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-5.3.18.tgz#e5d335f8a2c7dd46502b8f505006f1e111b46d49" - integrity sha512-uQ6NYJ5WODXK8DJ7m8y3yUAtWB3n+6XtYztjY+tdkCsLYvTYDXNS+epV+f5Hu9+gB+/Dm+b5Su4jDD+LZB2QWA== +"@storybook/components@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/components/-/components-5.3.9.tgz#1fbc688770889ddadb8c603f5a4dbcf987f3eb0f" + integrity sha512-R4xDR3pIYu7yPHex6DG3PPC3ekLgQuG03ZMQEgCfmWdl2wKXcLtEfQPYLRpC59xnQobfR3wqWgqrGchW54HPow== + dependencies: + "@storybook/client-logger" "5.3.9" + "@storybook/theming" "5.3.9" + "@types/react-syntax-highlighter" "11.0.2" + "@types/react-textarea-autosize" "^4.3.3" + core-js "^3.0.1" + global "^4.3.2" + lodash "^4.17.15" + markdown-to-jsx "^6.9.1" + memoizerific "^1.11.3" + polished "^3.3.1" + popper.js "^1.14.7" + prop-types "^15.7.2" + react "^16.8.3" + react-dom "^16.8.3" + react-focus-lock "^2.1.0" + react-helmet-async "^1.0.2" + react-popper-tooltip "^2.8.3" + react-syntax-highlighter "^11.0.2" + react-textarea-autosize "^7.1.0" + simplebar-react "^1.0.0-alpha.6" + ts-dedent "^1.1.0" + +"@storybook/core-events@5.3.17": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-5.3.17.tgz#698ce0a36c29fe8fa04608f56ccca53aa1d31638" + integrity sha512-DOeX9fpeGW4o9Gocxa4VW9wAlAyfIVNDTzq0wVvvMBthTTo9u58NmndglEMDgDa2Cq6iAIPh7vz2bRJCNexzLw== + dependencies: + core-js "^3.0.1" + +"@storybook/core-events@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-5.3.9.tgz#3c7fbc20204ae4b937c896ed6281e782cc09c4aa" + integrity sha512-JFnVjOHMnxbArIHEGuVvAcQuwf0l2yUJEsx5zJZ6OkCOFXKGDjqATGNtyZEOhVXTwONIWT6Y6ZTfKZLmdiSksQ== dependencies: core-js "^3.0.1" -"@storybook/core@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/core/-/core-5.3.18.tgz#3f3c0498275826c1cc4368aba203ac17a6ae5c9c" - integrity sha512-XQb/UQb+Ohuaw0GhKKYzvmuuh5Tit93f2cLZD9QCSWUPvDGmLG5g91Y9NbUr4Ap3mANT3NksMNhkAV0GxExEkg== +"@storybook/core@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/core/-/core-5.3.9.tgz#a13149714c46788555641124ed4f9fb7359e4550" + integrity sha512-AsyNLlFczEz5wGu92fJA6ioiSkUtK2Qgr+fXNOAFXA/FLhgBIijsNoAvEwkfCs8Koe3xNkbMRE1Tk4WRIl0kCw== dependencies: "@babel/plugin-proposal-class-properties" "^7.7.0" "@babel/plugin-proposal-object-rest-spread" "^7.6.2" "@babel/plugin-syntax-dynamic-import" "^7.2.0" "@babel/plugin-transform-react-constant-elements" "^7.2.0" "@babel/preset-env" "^7.4.5" - "@storybook/addons" "5.3.18" - "@storybook/channel-postmessage" "5.3.18" - "@storybook/client-api" "5.3.18" - "@storybook/client-logger" "5.3.18" - "@storybook/core-events" "5.3.18" + "@storybook/addons" "5.3.9" + "@storybook/channel-postmessage" "5.3.9" + "@storybook/client-api" "5.3.9" + "@storybook/client-logger" "5.3.9" + "@storybook/core-events" "5.3.9" "@storybook/csf" "0.0.1" - "@storybook/node-logger" "5.3.18" - "@storybook/router" "5.3.18" - "@storybook/theming" "5.3.18" - "@storybook/ui" "5.3.18" + "@storybook/node-logger" "5.3.9" + "@storybook/router" "5.3.9" + "@storybook/theming" "5.3.9" + "@storybook/ui" "5.3.9" airbnb-js-shims "^2.2.1" ansi-to-html "^0.6.11" autoprefixer "^9.7.2" @@ -2994,10 +3046,10 @@ dependencies: lodash "^4.17.15" -"@storybook/node-logger@5.3.18", "@storybook/node-logger@^5.3.17": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-5.3.18.tgz#ee278acb8b6f10d456a24c0ff6d59818a0c3ad94" - integrity sha512-Go/hdtaPTtjgJP+GYk8VXcOmecrdG7cXm0yyTlatd6s8xXI0txHme1/0MOZmEPows1Ec7KAQ20+NnaCGUPZUUg== +"@storybook/node-logger@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-5.3.9.tgz#5de49697b5e2565a4a84bd56244a424368f5e726" + integrity sha512-Uxk7YjlIMkf5Bsyw/EOdlYa4JT3m+FUqb5bV+vtkfzPhzKA9FLdSFEh5OVKct4lG74XxOgaKWJxudINeWKz0qQ== dependencies: "@types/npmlog" "^4.1.2" chalk "^3.0.0" @@ -3006,28 +3058,17 @@ pretty-hrtime "^1.0.3" regenerator-runtime "^0.13.3" -"@storybook/preset-typescript@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@storybook/preset-typescript/-/preset-typescript-3.0.0.tgz#e157baf6f2c4982c3da3328f5e1a640b3d7db9e4" - integrity sha512-tEbFWg5h/8SPfSCNXPxyqY418704K14q5H/xb9t0ARMXK3kZPTkKqKvdTvYg3UEKBBYbc+GA57UWaL+9b+DbDg== - dependencies: - "@babel/preset-typescript" "^7.8.3" - "@storybook/node-logger" "^5.3.17" - "@types/babel__core" "^7.1.6" - babel-preset-typescript-vue "^1.0.3" - fork-ts-checker-webpack-plugin "^4.1.0" - -"@storybook/react@^5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/react/-/react-5.3.18.tgz#c057b680924e188d44149c3d67dd31aead88b28a" - integrity sha512-6yNg+phcrEqEjC2NOiu0mJuxbTwX7yzbkcusIn0S7N/KTXNO7CGvYjAkdjfw0gTLjfuVDZIjDQfoosslvfsj3w== +"@storybook/react@^5.2.3": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/react/-/react-5.3.9.tgz#cf3a954b5d0430c5a3558ea5df305bb70e2af3cd" + integrity sha512-pOc6xw1c83fUnTRcCpIrtLLDKkZUhW3EkNvwYyMHrGXMRcgDETAlpoxBMHXpnbfV7qaAsE/UAVQQ1rRq5pgPBA== dependencies: "@babel/plugin-transform-react-constant-elements" "^7.6.3" "@babel/preset-flow" "^7.0.0" "@babel/preset-react" "^7.0.0" - "@storybook/addons" "5.3.18" - "@storybook/core" "5.3.18" - "@storybook/node-logger" "5.3.18" + "@storybook/addons" "5.3.9" + "@storybook/core" "5.3.9" + "@storybook/node-logger" "5.3.9" "@svgr/webpack" "^4.0.3" "@types/webpack-env" "^1.15.0" babel-plugin-add-react-displayname "^0.0.5" @@ -3036,7 +3077,7 @@ core-js "^3.0.1" global "^4.3.2" lodash "^4.17.15" - mini-css-extract-plugin "^0.7.0" + mini-css-extract-plugin "^0.8.0" prop-types "^15.7.2" react-dev-utils "^9.0.0" regenerator-runtime "^0.13.3" @@ -3044,10 +3085,10 @@ ts-dedent "^1.1.0" webpack "^4.33.0" -"@storybook/router@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/router/-/router-5.3.18.tgz#8ab22f1f2f7f957e78baf992030707a62289076e" - integrity sha512-6B2U2C75KTSVaCuYYgcubeJGcCSnwsXuEf50hEd5mGqWgHZfojCtGvB7Ko4X+0h8rEC+eNA4p7YBOhlUv9WNrQ== +"@storybook/router@5.3.17": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/router/-/router-5.3.17.tgz#4db96b45f39b25a3f7a4e2899c36e7e9e4ba6108" + integrity sha512-ANsiehGRTVSremgTW0Vt47dQ4JA86a4/w/4G6QqHU8Cm4jO3cw/wAcCxlzfcgCXOUiq+SuyPTU43+0O5uBx33g== dependencies: "@reach/router" "^1.2.1" "@storybook/csf" "0.0.1" @@ -3059,14 +3100,47 @@ qs "^6.6.0" util-deprecate "^1.0.2" -"@storybook/theming@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-5.3.18.tgz#35e78de79d9cf8f1248af0dd1c7fa60555761312" - integrity sha512-lfFTeLoYwLMKg96N3gn0umghMdAHgJBGuk2OM8Ll84yWtdl9RGnzfiI1Fl7Cr5k95dCF7drLJlJCao1VxUkFSA== +"@storybook/router@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/router/-/router-5.3.9.tgz#3c6e01f4dced9de8e8c5c314352fdc437f2441c2" + integrity sha512-z7ptxekGRAXP7hU74wdfeFY/ugrHXtpQcAM1X0k4tvbasJpm+fvqAD3yEYQpfEDL7cLlHEFLbOm6xDqtf1e5qQ== + dependencies: + "@reach/router" "^1.2.1" + "@storybook/csf" "0.0.1" + "@types/reach__router" "^1.2.3" + core-js "^3.0.1" + global "^4.3.2" + lodash "^4.17.15" + memoizerific "^1.11.3" + qs "^6.6.0" + util-deprecate "^1.0.2" + +"@storybook/theming@5.3.17": + version "5.3.17" + resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-5.3.17.tgz#cf6278c4857229c7167faf04d5b2206bc5ee04e1" + integrity sha512-4JeOZnDDHtb4LOt5sXe/s1Jhbb2UPsr8zL9NWmKJmTsgnyTvBipNHOmFYDUsIacB5K4GXSqm+cZ7Z4AkUgWCDw== + dependencies: + "@emotion/core" "^10.0.20" + "@emotion/styled" "^10.0.17" + "@storybook/client-logger" "5.3.17" + core-js "^3.0.1" + deep-object-diff "^1.1.0" + emotion-theming "^10.0.19" + global "^4.3.2" + memoizerific "^1.11.3" + polished "^3.3.1" + prop-types "^15.7.2" + resolve-from "^5.0.0" + ts-dedent "^1.1.0" + +"@storybook/theming@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-5.3.9.tgz#caaeea398f9e630394298ccfe8f36a185a289e4f" + integrity sha512-1vG+H1D5j2vcMv54eEKixAoa4UlTuS/dxMZubJfcZYY1PDNtnvQM6B1CE/4EU+qsIYPFQiGFXB4b6gjCFYIFpQ== dependencies: "@emotion/core" "^10.0.20" "@emotion/styled" "^10.0.17" - "@storybook/client-logger" "5.3.18" + "@storybook/client-logger" "5.3.9" core-js "^3.0.1" deep-object-diff "^1.1.0" emotion-theming "^10.0.19" @@ -3077,20 +3151,20 @@ resolve-from "^5.0.0" ts-dedent "^1.1.0" -"@storybook/ui@5.3.18": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/ui/-/ui-5.3.18.tgz#c66f6d94a3c50bb706f4d5b1d5592439110f16f0" - integrity sha512-xyXK53fNe9lkGPmXf3Nk+n0gz9gOgXI+fDxetyDLpX79k3DIN/jCKEnv45vXof7OQ45mTmyBvUNTKrNLqKTt5Q== +"@storybook/ui@5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@storybook/ui/-/ui-5.3.9.tgz#7e084ef93abb90b50ac18d4eea879c1f16b3e741" + integrity sha512-J1ktdeNaEGJmJUNFPGej71eVmjKct9DXaZq88eY3hwjrdfbBIPFrF6kUcAiP4SY900VlwMKuEtUJDcJpz55FYw== dependencies: "@emotion/core" "^10.0.20" - "@storybook/addons" "5.3.18" - "@storybook/api" "5.3.18" - "@storybook/channels" "5.3.18" - "@storybook/client-logger" "5.3.18" - "@storybook/components" "5.3.18" - "@storybook/core-events" "5.3.18" - "@storybook/router" "5.3.18" - "@storybook/theming" "5.3.18" + "@storybook/addons" "5.3.9" + "@storybook/api" "5.3.9" + "@storybook/channels" "5.3.9" + "@storybook/client-logger" "5.3.9" + "@storybook/components" "5.3.9" + "@storybook/core-events" "5.3.9" + "@storybook/router" "5.3.9" + "@storybook/theming" "5.3.9" copy-to-clipboard "^3.0.8" core-js "^3.0.1" core-js-pure "^3.0.1" @@ -3156,6 +3230,16 @@ d3-cloud "^1.2.1" prop-types "^15.6.2" +"@superset-ui/legacy-preset-chart-big-number@^0.11.15": + version "0.11.15" + resolved "https://registry.yarnpkg.com/@superset-ui/legacy-preset-chart-big-number/-/legacy-preset-chart-big-number-0.11.15.tgz#cdedf3e12e170d75f33b96c0d78e46c05463a7e8" + integrity sha512-Nd1ezgdzBfHIxUlGbYZ8Je3rklHvlygq1LE2dYGCKuOQkSDSpGLHU9Y9CMDOkurnmC46hMIxNe3DkVtY7xzTNQ== + dependencies: + "@data-ui/xy-chart" "^0.0.84" + d3-color "^1.2.3" + prop-types "^15.6.2" + shortid "^2.2.14" + "@superset-ui/plugin-chart-word-cloud@^0.11.15": version "0.11.15" resolved "https://registry.yarnpkg.com/@superset-ui/plugin-chart-word-cloud/-/plugin-chart-word-cloud-0.11.15.tgz#4863916a98b31e1953d08bcd4466e336af8aaca5" @@ -3276,10 +3360,10 @@ resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== -"@types/babel__core@^7.1.0", "@types/babel__core@^7.1.6": - version "7.1.7" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.7.tgz#1dacad8840364a57c98d0dd4855c6dd3752c6b89" - integrity sha512-RL62NqSFPCDK2FM1pSDH0scHpJvsXtZNiYlMB73DgPBaG1E38ZYVL+ei5EkWRbr+KC4YNiAUNBnRj+bgwpgjMw== +"@types/babel__core@^7.1.0": + version "7.1.3" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30" + integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -3303,9 +3387,9 @@ "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.0.9" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.9.tgz#be82fab304b141c3eee81a4ce3b034d0eba1590a" - integrity sha512-jEFQ8L1tuvPjOI8lnpaf73oCJe+aoxL6ygqSy6c8LcW98zaC+4mzWuQIRCEvKeCOu+lbqdXcg4Uqmm1S8AP1tw== + version "7.0.8" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.8.tgz#479a4ee3e291a403a1096106013ec22cf9b64012" + integrity sha512-yGeB2dHEdvxjP0y4UbRtQaSkXJ9649fYCmIdRoul5kfAoGCwxuCbMhag0k3RPfnuh9kPGm8x89btcfDEXdVWGw== dependencies: "@babel/types" "^7.3.0" @@ -3315,9 +3399,9 @@ integrity sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw== "@types/cheerio@*": - version "0.22.17" - resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.17.tgz#e54f71c3135f71ebc16c8dc62edad533872c9e72" - integrity sha512-izlm+hbqWN9csuB9GSMfCnAyd3/57XZi3rfz1B0C4QBGVMp+9xQ7+9KYnep+ySfUrCWql4lGzkLf0XmprXcz9g== + version "0.22.15" + resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.15.tgz#69040ffa92c309beeeeb7e92db66ac3f80700c0b" + integrity sha512-UGiiVtJK5niCqMKYmLEFz1Wl/3L5zF/u78lu8CwoUywWXRr9LDimeYuOzXVLXBMO758fcTdFtgjvqlztMH90MA== dependencies: "@types/node" "*" @@ -3337,13 +3421,13 @@ integrity sha512-rGqfPVowNDTszSFvwoZIXvrPG7s/qKzm9piCRIH6xwTTRu7pPZ3ootULFnPkTt74B6i5lN0FpLQL24qGOw1uZA== "@types/d3-cloud@^1.2.1": - version "1.2.3" - resolved "https://registry.yarnpkg.com/@types/d3-cloud/-/d3-cloud-1.2.3.tgz#cfaac9cb601968c27094903a82687336de69b518" - integrity sha512-VUcRA9YWM1V5Srg444/zVxgmhVyIYBrChIr5lg+0cPGNM4J4fLdBqEeAkk9ggRPM3Um4fUy/p/gtEKbAqL/hcw== + version "1.2.2" + resolved "https://registry.yarnpkg.com/@types/d3-cloud/-/d3-cloud-1.2.2.tgz#681d7776c2b8e4e4b00cb425ae890351850a91a5" + integrity sha512-WRjJBcCy2Xwrso/jqP6db+GALsgZX87LibBuh3iAMsv/XekrSerCzIeOIf5Hcr1U6lYKZ91/sijuW24eIOd8tQ== dependencies: "@types/d3" "^3" -"@types/d3-color@*", "@types/d3-color@^1.2.2": +"@types/d3-color@*": version "1.2.2" resolved "https://registry.yarnpkg.com/@types/d3-color/-/d3-color-1.2.2.tgz#80cf7cfff7401587b8f89307ba36fe4a576bc7cf" integrity sha512-6pBxzJ8ZP3dYEQ4YjQ+NVbQaOflfgXq/JbDiS99oLobM2o72uAST4q6yPxHv6FOTCRC/n35ktuo8pvw/S4M7sw== @@ -3361,9 +3445,9 @@ "@types/d3-color" "*" "@types/d3-scale@^2.0.2", "@types/d3-scale@^2.1.1": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-2.2.0.tgz#e5987a2857365823eb26ed5eb21bc566c4dcf1c0" - integrity sha512-oQFanN0/PiR2oySHfj+zAAkK1/p4LD32Nt1TMVmzk+bYHk7vgIg/iTXQWitp1cIkDw4LMdcgvO63wL+mNs47YA== + version "2.1.1" + resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-2.1.1.tgz#405e58771ec6ae7b8f7b4178ee1887620759e8f7" + integrity sha512-kNTkbZQ+N/Ip8oX9PByXfDLoCSaZYm+VUOasbmsa6KD850/ziMdYepg/8kLg2plHzoLANdMqPoYQbvExevLUHg== dependencies: "@types/d3-time" "*" @@ -3382,22 +3466,15 @@ resolved "https://registry.yarnpkg.com/@types/d3/-/d3-3.5.43.tgz#e9b4992817e0b6c5efaa7d6e5bb2cee4d73eab58" integrity sha512-t9ZmXOcpVxywRw86YtIC54g7M9puRh8hFedRvVfHKf5YyOP6pSxA0TvpXpfseXSCInoW4P7bggTrSDiUOs4g5w== -"@types/datatables.net@^1.10.18": - version "1.10.18" - resolved "https://registry.yarnpkg.com/@types/datatables.net/-/datatables.net-1.10.18.tgz#620c318cdd4a4a11b2e1c619b6747745a25c1d8d" - integrity sha512-uz80YsSHTLGd14/A3P4+EIp4n5SqBIbjtd2Hl7SwsXl/9zpsXzE2OY+sz0Gm8TF2jPfsKl0+9yB7/8RtoD3qoA== - dependencies: - "@types/jquery" "*" - "@types/debug@^4.1.5": version "4.1.5" resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd" integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== "@types/enzyme@^3.10.3": - version "3.10.5" - resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.5.tgz#fe7eeba3550369eed20e7fb565bfb74eec44f1f0" - integrity sha512-R+phe509UuUYy9Tk0YlSbipRpfVtIzb/9BHn5pTEtjJTF5LXvUjrIQcZvNyANNEyFrd2YGs196PniNT1fgvOQA== + version "3.10.4" + resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.4.tgz#dd4961042381a7c0f6637ce25fec3f773ce489dd" + integrity sha512-P5XpxcIt9KK8QUH4al4ttfJfIHg6xmN9ZjyUzRSzAsmDYwRXLI05ng/flZOPXrEXmp8ZYiN8/tEXYK5KSOQk3w== dependencies: "@types/cheerio" "*" "@types/react" "*" @@ -3432,14 +3509,9 @@ "@types/node" "*" "@types/history@*": - version "4.7.5" - resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.5.tgz#527d20ef68571a4af02ed74350164e7a67544860" - integrity sha512-wLD/Aq2VggCJXSjxEwrMafIP51Z+13H78nXIX0ABEuIGhmB5sNGbR113MOKo+yfw+RDo1ZU3DM6yfnnRF/+ouw== - -"@types/html-minifier-terser@^5.0.0": - version "5.0.0" - resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.0.0.tgz#7532440c138605ced1b555935c3115ddd20e8bef" - integrity sha512-q95SP4FdkmF0CwO0F2q0H6ZgudsApaY/yCtAQNRn1gduef5fGpyEphzy0YCq/N0UFvDSnLg5V8jFK/YGXlDiCw== + version "4.7.4" + resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.4.tgz#06cbceb0ace6a342a9aafcb655a688cf38f6150d" + integrity sha512-+o2igcuZA3xtOoFH56s+MCZVidwlJNcJID57DSCyawS2i910yG9vkwehCjJNZ6ImhCR5S9DbvIJKyYHcMyOfMw== "@types/is-function@^1.0.0": version "1.0.0" @@ -3467,20 +3539,13 @@ "@types/istanbul-lib-report" "*" "@types/jest@^25.1.1": - version "25.1.4" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-25.1.4.tgz#9e9f1e59dda86d3fd56afce71d1ea1b331f6f760" - integrity sha512-QDDY2uNAhCV7TMCITrxz+MRk1EizcsevzfeS6LykIlq2V1E5oO4wXG8V2ZEd9w7Snxeeagk46YbMgZ8ESHx3sw== + version "25.1.2" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-25.1.2.tgz#1c4c8770c27906c7d8def5d2033df9dbd39f60da" + integrity sha512-EsPIgEsonlXmYV7GzUqcvORsSS9Gqxw/OvkGwHfAdpjduNRxMlhsav0O5Kb0zijc/eXSO/uW6SJt9nwull8AUQ== dependencies: jest-diff "^25.1.0" pretty-format "^25.1.0" -"@types/jquery@*": - version "3.3.34" - resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.3.34.tgz#0d3b94057063d3854adaeb579652048fec07ba6c" - integrity sha512-lW9vsVL53Xu/Nj4gi2hNmHGc4u3KKghjqTkAlO0kF5GIOPxbqqnQpgqJBzmn3yXLrPqHb6cmNJ6URnS23Vtvbg== - dependencies: - "@types/sizzle" "*" - "@types/jsdom@^12.2.4": version "12.2.4" resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-12.2.4.tgz#845cd4d43f95b8406d9b724ec30c03edadcd9528" @@ -3507,10 +3572,10 @@ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.149.tgz#1342d63d948c6062838fbf961012f74d4e638440" integrity sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ== -"@types/micromatch@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@types/micromatch/-/micromatch-4.0.1.tgz#9381449dd659fc3823fd2a4190ceacc985083bc7" - integrity sha512-my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw== +"@types/micromatch@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@types/micromatch/-/micromatch-3.1.1.tgz#98eac88894da6606c2690624a9893a59c812d9fa" + integrity sha512-Wr5y4uv3r7JP4jEUqv7rZeYiMBGRHcbojDVsl11wq6gw1v/ZZQvJexd9rtvVx3EIVqw8dwtcRjSs8m2DV9qHjQ== dependencies: "@types/braces" "*" @@ -3520,9 +3585,9 @@ integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== "@types/node@*", "@types/node@>= 8": - version "13.9.8" - resolved "https://registry.yarnpkg.com/@types/node/-/node-13.9.8.tgz#09976420fc80a7a00bf40680c63815ed8c7616f4" - integrity sha512-1WgO8hsyHynlx7nhP1kr0OFzsgKz5XDQL+Lfc3b1Q3qIln/n8cKD4m09NJ0+P1Rq7Zgnc7N0+SsMnoD1rEb0kA== + version "13.5.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-13.5.0.tgz#4e498dbf355795a611a87ae5ef811a8660d42662" + integrity sha512-Onhn+z72D2O2Pb2ql2xukJ55rglumsVo1H6Fmyi8mlU9SvKdBk/pUSUAiBY/d9bAOF7VVWajX3sths/+g6ZiAQ== "@types/normalize-package-data@^2.4.0": version "2.4.0" @@ -3539,10 +3604,10 @@ resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== -"@types/prettier@*", "@types/prettier@^1.19.0": - version "1.19.1" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.1.tgz#33509849f8e679e4add158959fdb086440e9553f" - integrity sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ== +"@types/prettier@*": + version "1.19.0" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.0.tgz#a2502fb7ce9b6626fdbfc2e2a496f472de1bdd05" + integrity sha512-gDE8JJEygpay7IjA/u3JiIURvwZW08f0cZSZLAzFoX/ZmeqvS0Sqv+97aKuHpNsalAMMhwPe+iAS6fQbfmbt7A== "@types/prop-types@*": version "15.7.3" @@ -3555,9 +3620,9 @@ integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== "@types/reach__router@^1.2.3": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.2.tgz#06541355ed57ca555ce235de0c6ee2b676292a85" - integrity sha512-OTPBURw7aF3q+ejjcBQKjEFsiv4hr0oEFfIgUfdaSQfvnNSSu3I/Cfy1JvoDaTnbt6ZByiFWC5Y9AMhf4x0WOA== + version "1.2.6" + resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.2.6.tgz#b14cf1adbd1a365d204bbf6605cd9dd7b8816c87" + integrity sha512-Oh5DAVr/L2svBvubw6QEFpXGu295Y406BPs4i9t1n2pp7M+q3pmCmhzb9oZV5wncR41KCD3NHl1Yhi7uKnTPsA== dependencies: "@types/history" "*" "@types/react" "*" @@ -3569,13 +3634,6 @@ dependencies: "@types/react" "*" -"@types/react-dom@^16.9.6": - version "16.9.6" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.6.tgz#9e7f83d90566521cc2083be2277c6712dcaf754c" - integrity sha512-S6ihtlPMDotrlCJE9ST1fRmYrQNNwfgL61UB4I1W7M6kPulUKx9fXAleW5zpdIjUQ4fTaaog8uERezjsGUj9HQ== - dependencies: - "@types/react" "*" - "@types/react-loadable@^5.4.2": version "5.5.3" resolved "https://registry.yarnpkg.com/@types/react-loadable/-/react-loadable-5.5.3.tgz#65d50a6f9f7ff62513010bd6a460ed60ba58ca7d" @@ -3584,6 +3642,13 @@ "@types/react" "*" "@types/webpack" "*" +"@types/react-syntax-highlighter@11.0.2": + version "11.0.2" + resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.2.tgz#a2e3ff657d7c47813f80ca930f3d959c31ec51e3" + integrity sha512-iMNcixH8330f2dq0RY+VOXCP8JFehgmOhLOtnO85Ty+qu0fHXJNEqWx5VuFv8v0aEq0U/N9d/k1yvA+c6PEmPw== + dependencies: + "@types/react" "*" + "@types/react-syntax-highlighter@11.0.4": version "11.0.4" resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.4.tgz#d86d17697db62f98046874f62fdb3e53a0bbc4cd" @@ -3606,23 +3671,13 @@ "@types/react" "*" "@types/react@*", "@types/react@^16.3.0", "@types/react@^16.7.17": - version "16.9.31" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.31.tgz#6a543529766c8934ec8a89667376c2e73e9e2636" - integrity sha512-NpYJpNMWScFXtx3A2BJMeew2G3+9SEslVWMdxNJ6DLvxIuxWjY1bizK9q5Y1ujhln31vtjmhjOAYDr9Xx3k9FQ== + version "16.9.19" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.19.tgz#c842aa83ea490007d29938146ff2e4d9e4360c40" + integrity sha512-LJV97//H+zqKWMms0kvxaKYJDG05U2TtQB3chRLF8MPNs+MQh/H1aGlyDUxjaHvu08EAGerdX2z4LTBc7ns77A== dependencies: "@types/prop-types" "*" csstype "^2.2.0" -"@types/shortid@^0.0.29": - version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/shortid/-/shortid-0.0.29.tgz#8093ee0416a6e2bf2aa6338109114b3fbffa0e9b" - integrity sha1-gJPuBBam4r8qpjOBCRFLP7/6Dps= - -"@types/sizzle@*": - version "2.3.2" - resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.2.tgz#a811b8c18e2babab7d542b3365887ae2e4d9de47" - integrity sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg== - "@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" @@ -3641,41 +3696,41 @@ "@types/react" "*" "@types/webpack-env" "*" -"@types/tapable@*", "@types/tapable@^1.0.5": +"@types/tapable@*": version "1.0.5" resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.5.tgz#9adbc12950582aa65ead76bffdf39fe0c27a3c02" integrity sha512-/gG2M/Imw7cQFp8PGvz/SwocNrmKFjFsm5Pb8HdbHkZ1K8pmuPzOX4VeVoiEecFCVf4CsN1r3/BRvx+6sNqwtQ== "@types/tough-cookie@*": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.0.tgz#fef1904e4668b6e5ecee60c52cc6a078ffa6697d" - integrity sha512-I99sngh224D0M7XgW1s120zxCt3VYQ3IQsuw3P3jbq5GG4yc79+ZjyKznyOGIQrflfylLgcfekeZW/vk0yng6A== + version "2.3.6" + resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-2.3.6.tgz#c880579e087d7a0db13777ff8af689f4ffc7b0d5" + integrity sha512-wHNBMnkoEBiRAd3s8KTKwIuO9biFtTf0LehITzBhSco+HQI0xkXZbLOD55SW3Aqw3oUkHstkm5SPv58yaAdFPQ== "@types/uglify-js@*": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.0.5.tgz#2c70d5c68f6e002e3b2e4f849adc5f162546f633" - integrity sha512-L7EbSkhSaWBpkl+PZAEAqZTqtTeIsq7s/oX/q0LNnxxJoRVKQE0T81XDVyaxjiiKQwiV2vhVeYRqxdRNqGOGJw== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.0.4.tgz#96beae23df6f561862a830b4288a49e86baac082" + integrity sha512-SudIN9TRJ+v8g5pTG8RRCqfqTMNqgWCKKd3vtynhGzkIIjxaicNAMuY5TRadJ6tzDu3Dotf3ngaMILtmOdmWEQ== dependencies: source-map "^0.6.1" "@types/webpack-env@*", "@types/webpack-env@^1.15.0": - version "1.15.1" - resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.15.1.tgz#c8e84705e08eed430b5e15b39c65b0944e4d1422" - integrity sha512-eWN5ElDTeBc5lRDh95SqA8x18D0ll2pWudU3uWiyfsRmIZcmUXpEsxPU+7+BsdCrO2vfLRC629u/MmjbmF+2tA== + version "1.15.0" + resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.15.0.tgz#bd9956d5044b1fb43e869a9ba9148862ff98d9fd" + integrity sha512-TfcyNecCz8Z9/s90gBOBniyzZrTru8u2Vp0VZODq4KEBaQu8bfXvu7o/KUOecMpzjbFPUA7aqgSq628Iue5BQg== "@types/webpack-sources@*": - version "0.1.7" - resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-0.1.7.tgz#0a330a9456113410c74a5d64180af0cbca007141" - integrity sha512-XyaHrJILjK1VHVC4aVlKsdNN5KBTwufMb43cQs+flGxtPAf/1Qwl8+Q0tp5BwEGaI8D6XT1L+9bSWXckgkjTLw== + version "0.1.6" + resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-0.1.6.tgz#3d21dfc2ec0ad0c77758e79362426a9ba7d7cbcb" + integrity sha512-FtAWR7wR5ocJ9+nP137DV81tveD/ZgB1sadnJ/axUGM3BUVfRPx8oQNMtv3JNfTeHx3VP7cXiyfR/jmtEsVHsQ== dependencies: "@types/node" "*" "@types/source-list-map" "*" source-map "^0.6.1" -"@types/webpack@*", "@types/webpack@^4.41.8": - version "4.41.10" - resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.10.tgz#2e1f6b3508a249854efe3dcc7690905ac5ee10be" - integrity sha512-vIy0qaq8AjOjZLuFPqpo7nAJzcoVXMdw3mvpNN07Uvdy0p1IpJeLNBe3obdRP7FX2jIusDE7z1pZa0A6qYUgnA== +"@types/webpack@*": + version "4.41.3" + resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.3.tgz#30c2251db1d69a45bbffd79c0577dd9baf50e7ba" + integrity sha512-dH+BZ6pHBZFrXpnif0YU/PbmUq3lQrvRPnqkxsciSIzvG/DE+Vm/Wrjn56T7V3+B5ryQa5fw0oGnHL8tk4ll6w== dependencies: "@types/anymatch" "*" "@types/node" "*" @@ -3684,52 +3739,64 @@ "@types/webpack-sources" "*" source-map "^0.6.0" -"@types/yargs-parser@*", "@types/yargs-parser@^15.0.0": +"@types/yargs-parser@*": version "15.0.0" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d" integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== -"@types/yargs@^15.0.0", "@types/yargs@^15.0.4": - version "15.0.4" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.4.tgz#7e5d0f8ca25e9d5849f2ea443cf7c402decd8299" - integrity sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg== +"@types/yargs-parser@^13.0.0", "@types/yargs-parser@^13.1.0": + version "13.1.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228" + integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== + +"@types/yargs@^13.0.0", "@types/yargs@^13.0.3": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.6.tgz#6aed913a92c262c13b94d4bca8043237de202124" + integrity sha512-IkltIncDQWv6fcAvnHtJ6KtkmY/vtR3bViOaCzpj/A3yNhlfZAgxNe6AEQD1cQrkYD+YsKVo08DSxvNKEsD7BA== + dependencies: + "@types/yargs-parser" "*" + +"@types/yargs@^15.0.0": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.1.tgz#9266a9d7be68cfcc982568211085a49a277f7c96" + integrity sha512-sYlwNU7zYi6eZbMzFvG6eHD7VsEvFdoDtlD7eI1JTg7YNnuguzmiGsc6MPSq5l8n+h21AsNof0je+9sgOe4+dg== dependencies: "@types/yargs-parser" "*" -"@typescript-eslint/eslint-plugin@^2.25.0": - version "2.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.26.0.tgz#04c96560c8981421e5a9caad8394192363cc423f" - integrity sha512-4yUnLv40bzfzsXcTAtZyTjbiGUXMrcIJcIMioI22tSOyAxpdXiZ4r7YQUU8Jj6XXrLz9d5aMHPQf5JFR7h27Nw== +"@typescript-eslint/eslint-plugin@^2.17.0": + version "2.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.17.0.tgz#880435a9f9bdd50b45fa286ba63fed723d73c837" + integrity sha512-tg/OMOtPeXlvk0ES8mZzEZ4gd1ruSE03nsKcK+teJhxYv5CPCXK6Mb/OK6NpB4+CqGTHs4MVeoSZXNFqpT1PyQ== dependencies: - "@typescript-eslint/experimental-utils" "2.26.0" + "@typescript-eslint/experimental-utils" "2.17.0" + eslint-utils "^1.4.3" functional-red-black-tree "^1.0.1" regexpp "^3.0.0" tsutils "^3.17.1" -"@typescript-eslint/experimental-utils@2.26.0", "@typescript-eslint/experimental-utils@^2.5.0": - version "2.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.26.0.tgz#063390c404d9980767d76274df386c0aa675d91d" - integrity sha512-RELVoH5EYd+JlGprEyojUv9HeKcZqF7nZUGSblyAw1FwOGNnmQIU8kxJ69fttQvEwCsX5D6ECJT8GTozxrDKVQ== +"@typescript-eslint/experimental-utils@2.17.0", "@typescript-eslint/experimental-utils@^2.5.0": + version "2.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.17.0.tgz#12ed4a5d656e02ff47a93efc7d1ce1b8f1242351" + integrity sha512-2bNf+mZ/3mj5/3CP56v+ldRK3vFy9jOvmCPs/Gr2DeSJh+asPZrhFniv4QmQsHWQFPJFWhFHgkGgJeRmK4m8iQ== dependencies: "@types/json-schema" "^7.0.3" - "@typescript-eslint/typescript-estree" "2.26.0" + "@typescript-eslint/typescript-estree" "2.17.0" eslint-scope "^5.0.0" - eslint-utils "^2.0.0" -"@typescript-eslint/parser@^2.25.0": - version "2.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.26.0.tgz#385463615818b33acb72a25b39c03579df93d76f" - integrity sha512-+Xj5fucDtdKEVGSh9353wcnseMRkPpEAOY96EEenN7kJVrLqy/EVwtIh3mxcUz8lsFXW1mT5nN5vvEam/a5HiQ== +"@typescript-eslint/parser@^2.17.0": + version "2.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.17.0.tgz#627f79586d868edbab55f46a6b183cdc341aea1d" + integrity sha512-k1g3gRQ4fwfJoIfgUpz78AovicSWKFANmvTfkAHP24MgJHjWfZI6ya7tsQZt1sLczvP4G9BE5G5MgADHdmJB/w== dependencies: "@types/eslint-visitor-keys" "^1.0.0" - "@typescript-eslint/experimental-utils" "2.26.0" - "@typescript-eslint/typescript-estree" "2.26.0" + "@typescript-eslint/experimental-utils" "2.17.0" + "@typescript-eslint/typescript-estree" "2.17.0" eslint-visitor-keys "^1.1.0" -"@typescript-eslint/typescript-estree@2.26.0": - version "2.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.26.0.tgz#d8132cf1ee8a72234f996519a47d8a9118b57d56" - integrity sha512-3x4SyZCLB4zsKsjuhxDLeVJN6W29VwBnYpCsZ7vIdPel9ZqLfIZJgJXO47MNUkurGpQuIBALdPQKtsSnWpE1Yg== +"@typescript-eslint/typescript-estree@2.17.0": + version "2.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.17.0.tgz#2ce1531ec0925ef8d22d7026235917c2638a82af" + integrity sha512-g0eVRULGnEEUakxRfJO0s0Hr1LLQqsI6OrkiCLpdHtdJJek+wyd8mb00vedqAoWldeDcOcP8plqw8/jx9Gr3Lw== dependencies: debug "^4.1.1" eslint-visitor-keys "^1.1.0" @@ -3983,149 +4050,150 @@ d3-voronoi "^1.1.2" prop-types "^15.6.1" -"@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== +"@webassemblyjs/ast@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" + integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ== + dependencies: + "@webassemblyjs/helper-module-context" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/wast-parser" "1.8.5" + +"@webassemblyjs/floating-point-hex-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" + integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ== + +"@webassemblyjs/helper-api-error@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" + integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA== + +"@webassemblyjs/helper-buffer@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" + integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q== + +"@webassemblyjs/helper-code-frame@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" + integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ== + dependencies: + "@webassemblyjs/wast-printer" "1.8.5" + +"@webassemblyjs/helper-fsm@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" + integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow== + +"@webassemblyjs/helper-module-context@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" + integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g== + dependencies: + "@webassemblyjs/ast" "1.8.5" + mamacro "^0.0.3" + +"@webassemblyjs/helper-wasm-bytecode@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" + integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ== + +"@webassemblyjs/helper-wasm-section@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" + integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + +"@webassemblyjs/ieee754@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" + integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g== 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== +"@webassemblyjs/leb128@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" + integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A== 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" +"@webassemblyjs/utf8@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" + integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw== + +"@webassemblyjs/wasm-edit@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" + integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/helper-wasm-section" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + "@webassemblyjs/wasm-opt" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + "@webassemblyjs/wast-printer" "1.8.5" + +"@webassemblyjs/wasm-gen@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" + integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/ieee754" "1.8.5" + "@webassemblyjs/leb128" "1.8.5" + "@webassemblyjs/utf8" "1.8.5" + +"@webassemblyjs/wasm-opt@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" + integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + +"@webassemblyjs/wasm-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" + integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-api-error" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/ieee754" "1.8.5" + "@webassemblyjs/leb128" "1.8.5" + "@webassemblyjs/utf8" "1.8.5" + +"@webassemblyjs/wast-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" + integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/floating-point-hex-parser" "1.8.5" + "@webassemblyjs/helper-api-error" "1.8.5" + "@webassemblyjs/helper-code-frame" "1.8.5" + "@webassemblyjs/helper-fsm" "1.8.5" "@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== +"@webassemblyjs/wast-printer@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" + integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg== dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/wast-parser" "1.9.0" + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/wast-parser" "1.8.5" "@xtuc/long" "4.2.2" "@xtuc/ieee754@^1.2.0": @@ -4173,7 +4241,7 @@ accepts@~1.3.7: mime-types "~2.1.24" negotiator "0.6.2" -acorn-globals@^4.3.2: +acorn-globals@^4.1.0, acorn-globals@^4.3.2: version "4.3.4" resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== @@ -4181,25 +4249,30 @@ acorn-globals@^4.3.2: acorn "^6.0.1" acorn-walk "^6.0.1" -acorn-jsx@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" - integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== +acorn-jsx@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.1.0.tgz#294adb71b57398b0680015f0a38c563ee1db5384" + integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw== acorn-walk@^6.0.1: version "6.2.0" resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== +acorn@^5.5.3: + version "5.7.4" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" + integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== + acorn@^6.0.1, acorn@^6.2.1: - version "6.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" - integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== + version "6.4.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.0.tgz#b659d2ffbafa24baf5db1cdbb2c94a983ecd2784" + integrity sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw== -acorn@^7.1.0, acorn@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" - integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== +acorn@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c" + integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ== add-stream@^1.0.0: version "1.0.0" @@ -4289,10 +4362,10 @@ ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== -ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.5.5: - version "6.12.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7" - integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw== +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5: + version "6.11.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.11.0.tgz#c3607cbc8ae392d8a5a536f25b21f8e5f3f87fe9" + integrity sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA== dependencies: fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" @@ -4316,12 +4389,12 @@ ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== -ansi-escapes@^4.2.1, ansi-escapes@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" - integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== +ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.0.tgz#a4ce2b33d6b214b7950d8595c212f12ac9cc569d" + integrity sha512-EiYhwo0v255HUL6eDyuLrXEkTi7WwVCLAw+SeOQ7M7qdun1z1pum4DEm/nuqIVbPvi9RPPc9k9LbyBv6H0DwVg== dependencies: - type-fest "^0.11.0" + type-fest "^0.8.1" ansi-html@0.0.7: version "0.0.7" @@ -4369,9 +4442,9 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: color-convert "^2.0.1" ansi-to-html@^0.6.11: - version "0.6.14" - resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.14.tgz#65fe6d08bba5dd9db33f44a20aec331e0010dad8" - integrity sha512-7ZslfB1+EnFSDO5Ju+ue5Y6It19DRnZXWv8jrGHgIlPna5Mh4jz7BV5jCbQneXNFurQcKoolaaAjHtgSBfOIuA== + version "0.6.13" + resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.13.tgz#c72eae8b63e5ca0643aab11bfc6e6f2217425833" + integrity sha512-Ys2/umuaTlQvP9DLkaa7UzRKF2FLrfod/hNHXS9QhXCrw7seObG6ksOGmNz3UoK+adwM8L9vQfG7mvaxfJ3Jvw== dependencies: entities "^1.1.2" @@ -4526,12 +4599,12 @@ array-unique@^0.3.2: integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= array.prototype.find@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.1.tgz#3baca26108ca7affb08db06bf0be6cb3115a969c" - integrity sha512-mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA== + version "2.1.0" + resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.0.tgz#630f2eaf70a39e608ac3573e45cf8ccd0ede9ad7" + integrity sha512-Wn41+K1yuO5p7wRZDl7890c3xvv5UBrfVXTVIe28rSQb6LS0fZMDrQB6PAcxQFRFy6vJTLDc3A2+3CjQdzVKRg== dependencies: define-properties "^1.1.3" - es-abstract "^1.17.4" + es-abstract "^1.13.0" array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3: version "1.2.3" @@ -4620,9 +4693,9 @@ ast-types@0.11.3: integrity sha512-XA5o5dsNw8MhyW0Q7MWXJWc4oOzZKbdsEJq45h7c8q/d9DwWZ5F2ugUc1PuMLPGsUnphCt/cNDHu8JeBbxf1qA== ast-types@^0.13.2: - version "0.13.3" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.3.tgz#50da3f28d17bdbc7969a3a2d83a0e4a72ae755a7" - integrity sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA== + version "0.13.2" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.2.tgz#df39b677a911a83f3a049644fb74fdded23cea48" + integrity sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA== astral-regex@^1.0.0: version "1.0.0" @@ -4639,7 +4712,19 @@ async-each@^1.0.1: resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== -async@^2.6.1, async@^2.6.2: +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-retry@^1.1.4: + version "1.3.1" + resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.3.1.tgz#139f31f8ddce50c0870b0ba558a6079684aaed55" + integrity sha512-aiieFW/7h3hY0Bq5d+ktDBejxuwR78vRu9hDUdR8rNhSaQ29VzPL4AoIRG7D/c7tdenwOcKvgPM6tIxB3cB6HA== + dependencies: + retry "0.12.0" + +async@^2.1.4, async@^2.6.1, 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== @@ -4662,17 +4747,17 @@ atob@^2.1.2: integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== autoprefixer@^9.7.2: - version "9.7.5" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.5.tgz#8df10b9ff9b5814a8d411a5cfbab9c793c392376" - integrity sha512-URo6Zvt7VYifomeAfJlMFnYDhow1rk2bufwkbamPEAtQFcL11moLk4PnR7n9vlu7M+BkXAZkHFA0mIcY7tjQFg== + version "9.7.4" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.4.tgz#f8bf3e06707d047f0641d87aee8cfb174b2a5378" + integrity sha512-g0Ya30YrMBAEZk60lp+qfX5YQllG+S5W3GYCFvyHTvhOki0AEQJLPEcIuGRsqVwLi8FvXPVtwTGhfr38hVpm0g== dependencies: - browserslist "^4.11.0" - caniuse-lite "^1.0.30001036" + browserslist "^4.8.3" + caniuse-lite "^1.0.30001020" chalk "^2.4.2" normalize-range "^0.1.2" num2fraction "^1.2.2" - postcss "^7.0.27" - postcss-value-parser "^4.0.3" + postcss "^7.0.26" + postcss-value-parser "^4.0.2" aws-sign2@~0.7.0: version "0.7.0" @@ -4684,10 +4769,21 @@ aws4@^1.8.0: resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug== +axios@0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8" + integrity sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ== + dependencies: + follow-redirects "1.5.10" + is-buffer "^2.0.2" + axobject-query@^2.0.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.2.tgz#2bdffc0371e643e5f03ba99065d5179b9ca79799" - integrity sha512-ICt34ZmrVt8UQnvPl6TVyDTkmhXmAyAT4Jh5ugfGUX4MOrZ+U/ZY6/sdylRw3qGNr9Ub5AJsaHeDMzNLehRdOQ== + version "2.1.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.1.tgz#2a3b1271ec722d48a4cd4b3fcc20c853326a49a7" + integrity sha512-lF98xa/yvy6j3fBHAgQXIYl+J4eZadOSqsPojemUqClzNbBV38wWGpUbQbVEyf4eUF5yF7eHmGgGA2JiHyjeqw== + dependencies: + "@babel/runtime" "^7.7.4" + "@babel/runtime-corejs3" "^7.7.4" babel-code-frame@^6.22.0: version "6.26.0" @@ -4698,15 +4794,15 @@ babel-code-frame@^6.22.0: esutils "^2.0.2" js-tokens "^3.0.2" -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== +babel-eslint@^10.0.3: + version "10.0.3" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.3.tgz#81a2c669be0f205e19462fed2482d33e4687a88a" + integrity sha512-z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA== dependencies: "@babel/code-frame" "^7.0.0" - "@babel/parser" "^7.7.0" - "@babel/traverse" "^7.7.0" - "@babel/types" "^7.7.0" + "@babel/parser" "^7.0.0" + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" eslint-visitor-keys "^1.0.0" resolve "^1.12.0" @@ -4745,16 +4841,16 @@ babel-helper-to-multiple-sequence-expressions@^0.5.0: resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz#a3f924e3561882d42fcf48907aa98f7979a4588d" integrity sha512-m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA== -babel-jest@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.2.4.tgz#b21b68d3af8f161c3e6e501e91f0dea8e652e344" - integrity sha512-+yDzlyJVWrqih9i2Cvjpt7COaN8vUwCsKGtxJLzg6I0xhxD54K8mvDUCliPKLufyzHh/c5C4MRj4Vk7VMjOjIg== +babel-jest@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.1.0.tgz#206093ac380a4b78c4404a05b3277391278f80fb" + integrity sha512-tz0VxUhhOE2y+g8R2oFrO/2VtVjA1lkJeavlhExuRBg3LdNJY9gwQ+Vcvqt9+cqy71MCTJhewvTB7Qtnnr9SWg== dependencies: - "@jest/transform" "^25.2.4" - "@jest/types" "^25.2.3" + "@jest/transform" "^25.1.0" + "@jest/types" "^25.1.0" "@types/babel__core" "^7.1.0" babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^25.2.1" + babel-preset-jest "^25.1.0" chalk "^3.0.0" slash "^3.0.0" @@ -4767,16 +4863,15 @@ babel-literal-to-ast@^2.1.0: "@babel/traverse" "^7.1.6" "@babel/types" "^7.1.6" -babel-loader@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3" - integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw== +babel-loader@^8.0.6: + version "8.0.6" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb" + integrity sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw== dependencies: - find-cache-dir "^2.1.0" - loader-utils "^1.4.0" - mkdirp "^0.5.3" + find-cache-dir "^2.0.0" + loader-utils "^1.0.2" + mkdirp "^0.5.1" pify "^4.0.1" - schema-utils "^2.6.5" babel-plugin-add-react-displayname@^0.0.5: version "0.0.5" @@ -4791,14 +4886,14 @@ babel-plugin-dynamic-import-node@^2.3.0: object.assign "^4.1.0" babel-plugin-emotion@^10.0.20, babel-plugin-emotion@^10.0.27: - version "10.0.29" - resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.29.tgz#89d8e497091fcd3d10331f097f1471e4cc3f35b4" - integrity sha512-7Jpi1OCxjyz0k163lKtqP+LHMg5z3S6A7vMBfHnF06l2unmtsOmFDzZBpGf0CWo1G4m8UACfVcDJiSiRuu/cSw== + version "10.0.27" + resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.27.tgz#59001cf5de847c1d61f2079cd906a90a00d3184f" + integrity sha512-SUNYcT4FqhOqvwv0z1oeYhqgheU8qrceLojuHyX17ngo7WtWqN5I9l3IGHzf21Xraj465CVzF4IvOlAF+3ed0A== dependencies: "@babel/helper-module-imports" "^7.0.0" - "@emotion/hash" "0.8.0" + "@emotion/hash" "0.7.4" "@emotion/memoize" "0.7.4" - "@emotion/serialize" "^0.11.16" + "@emotion/serialize" "^0.11.15" babel-plugin-macros "^2.0.0" babel-plugin-syntax-jsx "^6.18.0" convert-source-map "^1.5.0" @@ -4826,10 +4921,10 @@ babel-plugin-istanbul@^6.0.0: istanbul-lib-instrument "^4.0.0" test-exclude "^6.0.0" -babel-plugin-jest-hoist@^25.2.1: - version "25.2.1" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.2.1.tgz#d0003a1f3d5caa281e1107fe03bbf16b799f9955" - integrity sha512-HysbCQfJhxLlyxDbKcB2ucGYV0LjqK4h6dBoI3RtFuOxTiTWK6XGZMsHb0tGh8iJdV4hC6Z2GCHzVvDeh9i0lQ== +babel-plugin-jest-hoist@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.1.0.tgz#fb62d7b3b53eb36c97d1bc7fec2072f9bd115981" + integrity sha512-oIsopO41vW4YFZ9yNYoLQATnnN46lp+MZ6H4VvPKFkcc2/fkl3CfE/NZZSmnEIEsJRmJAgkVEK0R7Zbl50CpTw== dependencies: "@types/babel__traverse" "^7.0.6" @@ -4930,9 +5025,9 @@ babel-plugin-minify-type-constructors@^0.4.3: babel-helper-is-void-0 "^0.4.3" babel-plugin-named-asset-import@^0.3.1: - version "0.3.6" - resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.6.tgz#c9750a1b38d85112c9e166bf3ef7c5dbc605f4be" - integrity sha512-1aGDUfL1qOOIoqk9QKGIo2lANk+C7ko/fqH0uIyC71x3PEGz0uVP8ISgfEsFuG+FKmjHTvFK/nNM8dowpmUxLA== + version "0.3.5" + resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.5.tgz#d3fa1a7f1f4babd4ed0785b75e2f926df0d70d0d" + integrity sha512-sGhfINU+AuMw9oFAdIn/nD5sem3pn/WgxAfDZ//Q3CnF+5uaho7C7shh2rKLk6sKE/XkfmyibghocwKdVjLIKg== babel-plugin-react-docgen@^4.0.0: version "4.1.0" @@ -5017,14 +5112,14 @@ babel-plugin-transform-undefined-to-void@^6.9.4: resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz#be241ca81404030678b748717322b89d0c8fe280" integrity sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA= -babel-plugin-typescript-to-proptypes@^1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/babel-plugin-typescript-to-proptypes/-/babel-plugin-typescript-to-proptypes-1.3.2.tgz#e57e88286be0e50a7596161fcfed62c04b6bc270" - integrity sha512-aoeJaO1OChCME0ZoLHc5k63RGwf1wBe7cfZ8zmRqbA/BX3nUbEnXLk5qWmrTQpdQxNa1v1BkF0395EJGCDb0yQ== +babel-plugin-typescript-to-proptypes@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/babel-plugin-typescript-to-proptypes/-/babel-plugin-typescript-to-proptypes-1.1.0.tgz#276f52c54af4c791229eb9d696f1aef55b3d0e53" + integrity sha512-GHdotmI+i53UB4Fh1k6jP2oRnbHwI1dHmgXya3GmZV9Qherom9bDhzA3sKW3jWJhBBFf30hcpXP1lLj5C/Vf3g== dependencies: - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-typescript" "^7.8.3" + "@babel/helper-module-imports" "^7.7.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-typescript" "^7.3.3" babel-polyfill@6.26.0, babel-polyfill@^6.26.0: version "6.26.0" @@ -5035,14 +5130,14 @@ babel-polyfill@6.26.0, babel-polyfill@^6.26.0: core-js "^2.5.0" regenerator-runtime "^0.10.5" -babel-preset-jest@^25.2.1: - version "25.2.1" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.2.1.tgz#4ccd0e577f69aa11b71806edfe8b25a5c3ac93a2" - integrity sha512-zXHJBM5iR8oEO4cvdF83AQqqJf3tJrXy3x8nfu2Nlqvn4cneg4Ca8M7cQvC5S9BzDDy1O0tZ9iXru9J6E3ym+A== +babel-preset-jest@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.1.0.tgz#d0aebfebb2177a21cde710996fce8486d34f1d33" + integrity sha512-eCGn64olaqwUMaugXsTtGAM2I0QTahjEtnRu0ql8Ie+gDWAc1N6wqN0k2NilnyTunM69Pad7gJY7LOtwLimoFQ== dependencies: "@babel/plugin-syntax-bigint" "^7.0.0" "@babel/plugin-syntax-object-rest-spread" "^7.0.0" - babel-plugin-jest-hoist "^25.2.1" + babel-plugin-jest-hoist "^25.1.0" "babel-preset-minify@^0.5.0 || 0.6.0-alpha.5": version "0.5.1" @@ -5073,16 +5168,6 @@ babel-preset-jest@^25.2.1: babel-plugin-transform-undefined-to-void "^6.9.4" lodash "^4.17.11" -babel-preset-typescript-vue@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/babel-preset-typescript-vue/-/babel-preset-typescript-vue-1.0.3.tgz#f03e4ac3763b2b47288b1b7c2c63128737d3e1b6" - integrity sha512-hulpKFA7zcElZpQlpYtPj1GJWocV0+RJG5Hk8rdTBHPappythNluaQIth8iVZIYghsrk26dCINvC/lizF2B99g== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-transform-typescript" "^7.3.2" - "@babel/preset-typescript" "^7.3.3" - fast-xml-parser "^3.12.17" - babel-runtime@6.26.0, babel-runtime@^6.23.0, babel-runtime@^6.26.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" @@ -5131,7 +5216,7 @@ bcrypt-pbkdf@^1.0.0: dependencies: tweetnacl "^0.14.3" -before-after-hook@^2.0.0, before-after-hook@^2.1.0: +before-after-hook@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.1.0.tgz#b6c03487f44e24200dd30ca5e6a1979c5d2fb635" integrity sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A== @@ -5189,10 +5274,10 @@ boolbase@^1.0.0, boolbase@~1.0.0: resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= -bootstrap@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.4.1.tgz#c3a347d419e289ad11f4033e3c4132b87c081d72" - integrity sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA== +bootstrap@^4.3.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.4.1.tgz#8582960eea0c5cd2bede84d8b0baf3789c3e8b01" + integrity sha512-tbx5cHubwE6e2ZG7nqM3g/FZ5PQEDMWmMGNrCUBVRPHXTJaH7CBDdsLeu3eCh3B1tzAxTnAbtmrzvWEvT2NNEA== boxen@^4.1.0: version "4.2.0" @@ -5244,10 +5329,10 @@ brorand@^1.0.1: 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== +browser-process-hrtime@^0.1.2: + version "0.1.3" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" + integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== browser-resolve@^1.11.3: version "1.11.3" @@ -5324,15 +5409,14 @@ browserslist@4.7.0: electron-to-chromium "^1.3.247" node-releases "^1.1.29" -browserslist@^4.11.0, browserslist@^4.8.3, browserslist@^4.9.1: - version "4.11.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.11.1.tgz#92f855ee88d6e050e7e7311d987992014f1a1f1b" - integrity sha512-DCTr3kDrKEYNw6Jb9HFxVLQNaue8z+0ZfRBRjmCunKDEXEBajKDj2Y+Uelg+Pi29OnvaSGwjOsnRyNEkXzHg5g== +browserslist@^4.8.2, browserslist@^4.8.3: + version "4.8.5" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.5.tgz#691af4e327ac877b25e7a3f7ee869c4ef36cdea3" + integrity sha512-4LMHuicxkabIB+n9874jZX/az1IaZ5a+EUuvD7KFOu9x/Bd5YHyO0DIz2ls/Kl8g0ItS4X/ilEgf4T1Br0lgSg== dependencies: - caniuse-lite "^1.0.30001038" - electron-to-chromium "^1.3.390" - node-releases "^1.1.53" - pkg-up "^2.0.0" + caniuse-lite "^1.0.30001022" + electron-to-chromium "^1.3.338" + node-releases "^1.1.46" bs-logger@0.x: version "0.2.6" @@ -5398,9 +5482,9 @@ bytes@3.1.0: integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== cacache@^12.0.0, cacache@^12.0.2, cacache@^12.0.3: - version "12.0.4" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" - integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== + version "12.0.3" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390" + integrity sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw== dependencies: bluebird "^3.5.5" chownr "^1.1.1" @@ -5499,14 +5583,6 @@ camel-case@^3.0.0: no-case "^2.2.0" upper-case "^1.1.1" -camel-case@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.1.tgz#1fc41c854f00e2f7d0139dfeba1542d6896fe547" - integrity sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q== - dependencies: - pascal-case "^3.1.1" - tslib "^1.10.0" - camelcase-keys@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" @@ -5529,6 +5605,11 @@ camelcase@^2.0.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= +camelcase@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= + camelcase@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" @@ -5544,10 +5625,10 @@ can-use-dom@^0.1.0: resolved "https://registry.yarnpkg.com/can-use-dom/-/can-use-dom-0.1.0.tgz#22cc4a34a0abc43950f42c6411024a3f6366b45a" integrity sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo= -caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001036, caniuse-lite@^1.0.30001038: - version "1.0.30001038" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001038.tgz#44da3cbca2ab6cb6aa83d1be5d324e17f141caff" - integrity sha512-zii9quPo96XfOiRD4TrfYGs+QsGZpb2cGiMAzPjtf/hpFgB6zCPZgJb7I1+EATeMw/o+lG8FyRAnI+CWStHcaQ== +caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001020, caniuse-lite@^1.0.30001022: + version "1.0.30001022" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001022.tgz#9eeffe580c3a8f110b7b1742dcf06a395885e4c6" + integrity sha512-FjwPPtt/I07KyLPkBQ0g7/XuZg6oUkYBVnPHNj3VHJbOjmmJ/GdSo/GUY6MwINEQvjhP6WZVbX8Tvms8xh0D5A== capture-exit@^2.0.0: version "2.0.0" @@ -5676,7 +5757,7 @@ cheerio@^1.0.0-rc.3: lodash "^4.15.0" parse5 "^3.0.1" -chokidar@^2.0.4, chokidar@^2.1.8: +chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.8: version "2.1.8" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== @@ -5696,9 +5777,9 @@ chokidar@^2.0.4, chokidar@^2.1.8: fsevents "^1.2.7" chownr@^1.1.1, chownr@^1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + version "1.1.3" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142" + integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw== chrome-trace-event@^1.0.2: version "1.0.2" @@ -5735,10 +5816,10 @@ classnames@^2.2.5: resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== -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== +clean-css@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" + integrity sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g== dependencies: source-map "~0.6.0" @@ -5817,14 +5898,23 @@ cli-width@^2.0.0: integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= clipboard@^2.0.0: - version "2.0.6" - resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" - integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== + version "2.0.4" + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.4.tgz#836dafd66cf0fea5d71ce5d5b0bf6e958009112d" + integrity sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ== dependencies: good-listener "^1.2.2" select "^1.1.2" tiny-emitter "^2.0.0" +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + cliui@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" @@ -5988,10 +6078,10 @@ commander@2, commander@^2.11.0, commander@^2.18.0, commander@^2.19.0, commander@ resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== -commander@^4.0.1, 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@^4.0.0, commander@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.0.tgz#545983a0603fe425bc672d66c9e3c89c42121a83" + integrity sha512-NIQrwvv9V39FHgGFm36+U9SMQzbiHvU79k+iADraJTpmrFFfx7Ds0IvDoAdZsDrknlkRk14OYoWXb57uTh7/sw== commitizen@^3.0.7: version "3.1.2" @@ -6028,9 +6118,9 @@ compare-func@^1.3.1: dot-prop "^3.0.0" compare-versions@^3.5.1: - version "3.6.0" - resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" - integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== + version "3.5.1" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.5.1.tgz#26e1f5cf0d48a77eced5046b9f67b6b61075a393" + integrity sha512-9fGPIB7C6AyM18CJJBHt5EnCZDG3oiTJYy0NjfIAGjKpzv0tkxWko7TNQHF5ymqm7IH03tqmeuBxtvD+Izh6mg== component-emitter@^1.2.1: version "1.3.0" @@ -6070,7 +6160,7 @@ config-chain@^1.1.11, config-chain@^1.1.12: ini "^1.3.4" proto-list "~1.2.1" -confusing-browser-globals@^1.0.9: +confusing-browser-globals@^1.0.7: version "1.0.9" resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd" integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw== @@ -6371,9 +6461,9 @@ copy-descriptor@^0.1.0: integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= copy-to-clipboard@^3.0.8: - 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== + version "3.2.0" + resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz#d2724a3ccbfed89706fac8a894872c979ac74467" + integrity sha512-eOZERzvCmxS8HWzugj4Uxl8OJxa7T2k1Gi0X5qavwydHIfuSHq2dTD09LOg/XyGq4Zpb5IsR/2OJ5lbOegz78w== dependencies: toggle-selection "^1.0.6" @@ -6477,7 +6567,15 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: safe-buffer "^5.0.1" sha.js "^2.4.8" -create-react-context@0.3.0, create-react-context@^0.3.0: +create-react-context@^0.2.1: + version "0.2.3" + resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.3.tgz#9ec140a6914a22ef04b8b09b7771de89567cb6f3" + integrity sha512-CQBmD0+QGgTaxDL3OX1IDXYqjkp2It4RIbcb99jS6AEg27Ga+a9G3JtK6SIu0HBwPLZlmwt9F7UwWA4Bn92Rag== + dependencies: + fbjs "^0.8.0" + gud "^1.0.0" + +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== @@ -6573,14 +6671,6 @@ css-tree@1.0.0-alpha.37: mdn-data "2.0.4" source-map "^0.6.1" -css-tree@1.0.0-alpha.39: - version "1.0.0-alpha.39" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.39.tgz#2bff3ffe1bb3f776cf7eefd91ee5cba77a149eeb" - integrity sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA== - dependencies: - mdn-data "2.0.6" - source-map "^0.6.1" - css-what@2.1: version "2.1.3" resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" @@ -6596,27 +6686,29 @@ cssesc@^3.0.0: resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -cssfilter@0.0.10: - version "0.0.10" - resolved "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae" - integrity sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4= - csso@^4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.3.tgz#0d9985dc852c7cc2b2cacfbbe1079014d1a8e903" - integrity sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ== + version "4.0.2" + resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.2.tgz#e5f81ab3a56b8eefb7f0092ce7279329f454de3d" + integrity sha512-kS7/oeNVXkHWxby5tHVxlhjizRCSv8QdU7hB2FpdAibDU8FjTAolhNjKNTiLzXtUrKT6HwClE81yXwEk1309wg== dependencies: - css-tree "1.0.0-alpha.39" + css-tree "1.0.0-alpha.37" + +cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0", cssom@~0.3.6: + version "0.3.8" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== cssom@^0.4.1: 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@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1" + integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA== + dependencies: + cssom "0.3.x" cssstyle@^2.0.0: version "2.2.0" @@ -6625,10 +6717,10 @@ cssstyle@^2.0.0: dependencies: cssom "~0.3.6" -csstype@^2.2.0, csstype@^2.5.7, csstype@^2.6.4, csstype@^2.6.7: - version "2.6.10" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" - integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== +csstype@^2.2.0, csstype@^2.5.7, csstype@^2.6.4: + version "2.6.8" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.8.tgz#0fb6fc2417ffd2816a418c9336da74d7f07db431" + integrity sha512-msVS9qTuMT5zwAGCVm4mxfrZ18BNc6Csd0oJAtiFMZ1FAx1CCvy2+5MDmYoix63LM/6NDbNtodCiGYGmFgO0dA== currently-unhandled@^0.4.1: version "0.4.1" @@ -6681,9 +6773,9 @@ d3-color@1, d3-color@^1.2.3, d3-color@^1.4.0: integrity sha512-TzNPeJy2+iEepfiL92LAAB7fvnp/dV2YwANPVHdDWmYMm23qIJBYww3qT8I8C1wXrmrg4UWs7BKc2tKIgyjzHg== d3-delaunay@^5.1.3: - version "5.2.1" - resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-5.2.1.tgz#0c4b280eb00194986ac4a3df9c81d32bf216cb36" - integrity sha512-ZZdeJl6cKRyqYVFYK+/meXvWIrAvZsZTD7WSxl4OPXCmuXNgDyACAClAJHD63zL25TA+IJGURUNO7rFseNFCYw== + version "5.2.0" + resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-5.2.0.tgz#0db64837321ee6f1b1a0f9216eb3fa603f71dfec" + integrity sha512-G3gu/LcNQSX1FMZoL9H19O89bUYsQR+TVIdNlz8vzr/ASHV36xfK7eljsuLRP6PsqxrjbiWG6B3/zMUCYJnuUw== dependencies: delaunator "4" @@ -6692,7 +6784,7 @@ d3-dispatch@1, d3-dispatch@^1.0.3: resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.6.tgz#00d37bcee4dd8cd97729dd893a0ac29caaba5d58" integrity sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA== -d3-dsv@^1.2.0: +d3-dsv@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-1.2.0.tgz#9d5f75c3a5f8abd611f74d3f5847b0d4338b885c" integrity sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g== @@ -6710,7 +6802,7 @@ d3-force@^2.0.1: d3-quadtree "1" d3-timer "1" -d3-format@1, d3-format@^1.3.2, d3-format@^1.4.2, d3-format@^1.4.3: +d3-format@1, d3-format@^1.3.2, d3-format@^1.4.2: version "1.4.3" resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.3.tgz#4e8eb4dff3fdcb891a8489ec6e698601c41b96f1" integrity sha512-mm/nE2Y9HgGyjP+rKIekeITVgBtX97o1nrvHCWX8F/yBYyevUTvu9vb5pUnKwrcSw7o7GuwMOWjS9gFDs4O+uQ== @@ -6793,7 +6885,7 @@ d3-shape@^1.0.6, d3-shape@^1.2.0, d3-shape@^1.3.7: dependencies: d3-path "1" -d3-time-format@2, d3-time-format@^2.2.0, d3-time-format@^2.2.1, d3-time-format@^2.2.2, d3-time-format@^2.2.3: +d3-time-format@2, d3-time-format@^2.2.0, d3-time-format@^2.2.1, d3-time-format@^2.2.2: version "2.2.3" resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.2.3.tgz#0c9a12ee28342b2037e5ea1cf0b9eb4dd75f29cb" integrity sha512-RAHNnD8+XvC4Zc4d2A56Uw0yJoM7bsvOlJR33bclxq399Rak/b9bhvu/InjxdWhPtkgU53JJcleJTGkNRnN6IA== @@ -6821,9 +6913,9 @@ d3@^3.5.17: integrity sha1-vEZ0gAQ3iyGjYMn8fPUjF5B2L7g= damerau-levenshtein@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" - integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug== + version "1.0.5" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.5.tgz#780cf7144eb2e8dbd1c3bb83ae31100ccc31a414" + integrity sha512-CBCRqFnpu715iPmw1KrdOrzRqbdFwQTwAWyyyYS42+iAgHCuXZ+/TdMgQkUENPomxEz9z1BEzuQU2Xw0kUuAgA== dargs@^4.0.1: version "4.1.0" @@ -6844,7 +6936,7 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" -data-urls@^1.1.0: +data-urls@^1.0.0, data-urls@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== @@ -6853,21 +6945,6 @@ data-urls@^1.1.0: whatwg-mimetype "^2.2.0" whatwg-url "^7.0.0" -datatables.net-bs@^1.10.20: - version "1.10.20" - resolved "https://registry.yarnpkg.com/datatables.net-bs/-/datatables.net-bs-1.10.20.tgz#4a54a65527013aa8bb98eb7fa27d6231f7dc1bee" - integrity sha512-NsMoOOYZ6NlteOpzhltw21lXsNdhjIMbIOxnqmcrb62ntl8eL9pYzk2AeiDXBlIKY4e550ZrExCq3CYKQ9myEg== - dependencies: - datatables.net "1.10.20" - jquery ">=1.7" - -datatables.net@1.10.20: - version "1.10.20" - resolved "https://registry.yarnpkg.com/datatables.net/-/datatables.net-1.10.20.tgz#9d65ecc3c83cbe7baa4fa5a053405c8fe42c1350" - integrity sha512-4E4S7tTU607N3h0fZPkGmAtr9mwy462u+VJ6gxYZ8MxcRIjZqHy3Dv1GNry7i3zQCktTdWbULVKBbkAJkuHEnQ== - dependencies: - jquery ">=1.7" - date-fns@^1.27.2: version "1.30.1" resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" @@ -6885,14 +6962,14 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: dependencies: ms "2.0.0" -debug@3.1.0: +debug@3.1.0, debug@=3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== dependencies: ms "2.0.0" -debug@^3.0.0, debug@^3.1.0, debug@^3.2.5: +debug@^3.0.0, debug@^3.0.1, debug@^3.1.0, debug@^3.2.5: version "3.2.6" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== @@ -6919,7 +6996,7 @@ decamelize-keys@^1.0.0: decamelize "^1.1.0" map-obj "^1.0.0" -decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: +decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= @@ -6961,11 +7038,6 @@ deep-object-diff@^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== - defaults@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" @@ -7022,12 +7094,17 @@ delegates@^1.0.0: resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= +denodeify@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" + integrity sha1-OjYof1A05pnnV3kBBSwubJQlFjE= + depd@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= -deprecation@^2.0.0, deprecation@^2.3.1: +deprecation@^2.0.0: version "2.3.1" resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== @@ -7089,10 +7166,10 @@ dezalgo@^1.0.0: asap "^2.0.0" wrappy "1" -diff-sequences@^25.2.1: - version "25.2.1" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.1.tgz#fcfe8aa07dd9b0c648396a478dabca8e76c6ab27" - integrity sha512-foe7dXnGlSh3jR1ovJmdv+77VQj98eKCHHwJPbZ2eEf0fHwKbkZicpPxEch9smZ+n2dnF6QFwkOQdLq9hpeJUg== +diff-sequences@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.1.0.tgz#fd29a46f1c913fd66c22645dc75bffbe43051f32" + integrity sha512-nFIfVk5B/NStCsJ+zaPO4vYuLjlzQ6uFvPxzYyHlejNZ/UGa7G/n7peOXVrVNvRuyfstt+mZQYGpjxg9Z6N8Kw== diff@^3.5.0: version "3.5.0" @@ -7162,13 +7239,12 @@ dom-converter@^0.2: dependencies: utila "~0.4" -dom-helpers@^5.0.1: - version "5.1.4" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.1.4.tgz#4609680ab5c79a45f2531441f1949b79d6587f4b" - integrity sha512-TjMyeVUvNEnOnhzs6uAn9Ya47GmMo3qq7m+Lr/3ON0Rs5kHvb8I+SQYjLUSYn7qhEm0QjW0yrBkvz9yOrwwz1A== +dom-helpers@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8" + integrity sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA== dependencies: - "@babel/runtime" "^7.8.7" - csstype "^2.6.7" + "@babel/runtime" "^7.1.2" dom-serializer@0: version "0.2.2" @@ -7248,14 +7324,6 @@ dot-case@^2.1.0: dependencies: no-case "^2.2.0" -dot-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa" - integrity sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA== - dependencies: - no-case "^3.0.3" - tslib "^1.10.0" - dot-prop@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" @@ -7366,10 +7434,10 @@ ejs@^2.6.1, ejs@^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.247, electron-to-chromium@^1.3.390: - version "1.3.392" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.392.tgz#280ab4f7a3ae47419cfabb15dbfc1567be7f1111" - integrity sha512-/hsgeVdReDsyTBE0aU9FRdh1wnNPrX3xlz3t61F+CJPOT+Umfi9DXHsCX85TEgWZQqlow0Rw44/4/jbU2Sqgkg== +electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.338: + version "1.3.340" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.340.tgz#5d4fe78e984d4211194cf5a52e08069543da146f" + integrity sha512-hRFBAglhcj5iVYH+o8QU0+XId1WGoc0VGowJB1cuJAt3exHGrivZvWeAO5BRgBZqwZtwxjm8a5MQeGoT/Su3ww== elegant-spinner@^1.0.1: version "1.0.1" @@ -7468,7 +7536,7 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0: dependencies: once "^1.4.0" -enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0: +enhanced-resolve@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA== @@ -7494,6 +7562,14 @@ entities@^2.0.0: resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4" integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== +env-ci@^2.1.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-2.6.0.tgz#3fc46537c972b4d3ab5f0b82d07dfc1491297662" + integrity sha512-tnOi9qgtDxY3mvf69coXLHbSZtFMNGAJ1s/huirAhJZTx9rs/1qgFjl+6Z5ULQCfpDmlsf34L7wm+eJGwMazYg== + dependencies: + execa "^1.0.0" + java-properties "^0.2.9" + env-ci@^4.5.1: version "4.5.2" resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-4.5.2.tgz#40b08825dcf4ed5b2cddd3d638190571cf96347a" @@ -7548,12 +7624,11 @@ enzyme-shallow-equal@^1.0.1: object-is "^1.0.2" enzyme-to-json@^3.4.3: - version "3.4.4" - resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.4.4.tgz#b30726c59091d273521b6568c859e8831e94d00e" - integrity sha512-50LELP/SCPJJGic5rAARvU7pgE3m1YaNj7JLM+Qkhl5t7PAs6fiyc8xzc50RnkKPFQCv0EeFVjEWdIFRGPWMsA== + version "3.4.3" + resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.4.3.tgz#ed4386f48768ed29e2d1a2910893542c34e7e0af" + integrity sha512-jqNEZlHqLdz7OTpXSzzghArSS3vigj67IU/fWkPyl1c0TCj9P5s6Ze0kRkYZWNEoCqCR79xlQbigYlMx5erh8A== dependencies: lodash "^4.17.15" - react-is "^16.12.0" enzyme@^3.10.0: version "3.11.0" @@ -7589,9 +7664,9 @@ err-code@^1.0.0: integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA= errlop@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/errlop/-/errlop-2.1.0.tgz#a9df1d2e5b1359e95c3fc0bf3f1b68fa39017260" - integrity sha512-sEmQX03aJkWsqTPDYaymq3ROJmKxMHhFS4UN8fWwr5ZiRtw3p61QHRk2QQj68DiaTIXWujJP+uEUS1Zx3spxlw== + version "2.0.0" + resolved "https://registry.yarnpkg.com/errlop/-/errlop-2.0.0.tgz#52b97d35da1b0795e2647b5d2d3a46d17776f55a" + integrity sha512-z00WIrQhtOMUnjdTG0O4f6hMG64EVccVDBy2WwgjcF8S4UB1exGYuc2OFwmdQmsJwLQVEIHWHPCz/omXXgAZHw== errno@^0.1.3, errno@~0.1.7: version "0.1.7" @@ -7614,10 +7689,10 @@ error@^7.0.2: dependencies: string-template "~0.2.1" -es-abstract@^1.17.0, es-abstract@^1.17.0-next.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.17.5: - version "1.17.5" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" - integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== +es-abstract@^1.13.0, es-abstract@^1.17.0, es-abstract@^1.17.0-next.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2: + version "1.17.4" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.4.tgz#e3aedf19706b20e7c2594c35fc0d57605a79e184" + integrity sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ== dependencies: es-to-primitive "^1.2.1" function-bind "^1.1.1" @@ -7637,16 +7712,16 @@ es-array-method-boxes-properly@^1.0.0: integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== es-get-iterator@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.0.tgz#bb98ad9d6d63b31aacdc8f89d5d0ee57bcb5b4c8" - integrity sha512-UfrmHuWQlNMTs35e1ypnvikg6jCz3SK8v8ImvmDsh36fCVUR1MqoFDiyn0/k52C8NqO3YsO8Oe0azeesNuqSsQ== + version "1.0.2" + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.0.2.tgz#bc99065aa8c98ce52bc86ab282dedbba4120e0b3" + integrity sha512-ZHb4fuNK3HKHEOvDGyHPKf5cSWh/OvAMskeM/+21NMnTuvqFvz8uHatolu+7Kf6b6oK9C+3Uo1T37pSGPWv0MA== dependencies: - es-abstract "^1.17.4" + es-abstract "^1.17.0-next.1" has-symbols "^1.0.1" is-arguments "^1.0.4" - is-map "^2.0.1" - is-set "^2.0.1" - is-string "^1.0.5" + is-map "^2.0.0" + is-set "^2.0.0" + is-string "^1.0.4" isarray "^2.0.5" es-to-primitive@^1.2.1: @@ -7659,9 +7734,9 @@ es-to-primitive@^1.2.1: is-symbol "^1.0.2" es5-shim@^4.5.13: - version "4.5.14" - resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.14.tgz#90009e1019d0ea327447cb523deaff8fe45697ef" - integrity sha512-7SwlpL+2JpymWTt8sNLuC2zdhhc+wrfe5cMPI2j0o6WsPdfAiPwmFy2f0AocPB4RQVBOZ9kNTgi5YF7TdhkvEg== + version "4.5.13" + resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.13.tgz#5d88062de049f8969f83783f4a4884395f21d28b" + integrity sha512-xi6hh6gsvDE0MaW4Vp1lgNEBpVcCXRWfPXj5egDvtgLz4L9MEvNwYEMdJH+JJinWkwa8c3c3o5HduV7dB/e1Hw== es6-promise@^4.0.3: version "4.2.8" @@ -7690,10 +7765,10 @@ escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1 resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= -escodegen@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" - integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== +escodegen@^1.11.1, escodegen@^1.9.1: + version "1.13.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.13.0.tgz#c7adf9bd3f3cc675bb752f202f79a720189cab29" + integrity sha512-eYk2dCkxR07DsHA/X2hRBj0CFAZeri/LyDMc0C8JT1Hqi6JnVpMhJ7XFITbb0+yZS3lVkaPL2oCkZ3AVmeVbMw== dependencies: esprima "^4.0.1" estraverse "^4.2.0" @@ -7710,28 +7785,28 @@ eslint-ast-utils@^1.1.0: lodash.get "^4.4.2" lodash.zip "^4.2.0" -eslint-config-airbnb-base@^14.1.0: - version "14.1.0" - resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.1.0.tgz#2ba4592dd6843258221d9bff2b6831bd77c874e4" - integrity sha512-+XCcfGyCnbzOnktDVhwsCAx+9DmrzEmuwxyHUJpw+kqBVT744OUBrB09khgFKlK1lshVww6qXGsYPZpavoNjJw== +eslint-config-airbnb-base@^14.0.0: + version "14.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.0.0.tgz#8a7bcb9643d13c55df4dd7444f138bf4efa61e17" + integrity sha512-2IDHobw97upExLmsebhtfoD3NAKhV4H0CJWP3Uprd/uk+cHuWYOczPVxQ8PxLFUAw7o3Th1RAU8u1DoUpr+cMA== dependencies: - confusing-browser-globals "^1.0.9" + confusing-browser-globals "^1.0.7" object.assign "^4.1.0" - object.entries "^1.1.1" + object.entries "^1.1.0" -eslint-config-airbnb@^18.1.0: - version "18.1.0" - resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.1.0.tgz#724d7e93dadd2169492ff5363c5aaa779e01257d" - integrity sha512-kZFuQC/MPnH7KJp6v95xsLBf63G/w7YqdPfQ0MUanxQ7zcKUNG8j+sSY860g3NwCBOa62apw16J6pRN+AOgXzw== +eslint-config-airbnb@^18.0.1: + version "18.0.1" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.0.1.tgz#a3a74cc29b46413b6096965025381df8fb908559" + integrity sha512-hLb/ccvW4grVhvd6CT83bECacc+s4Z3/AEyWQdIT2KeTsG9dR7nx1gs7Iw4tDmGKozCNHFn4yZmRm3Tgy+XxyQ== dependencies: - eslint-config-airbnb-base "^14.1.0" + eslint-config-airbnb-base "^14.0.0" object.assign "^4.1.0" - object.entries "^1.1.1" + object.entries "^1.1.0" -eslint-config-prettier@^6.10.1: - version "6.10.1" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.10.1.tgz#129ef9ec575d5ddc0e269667bf09defcd898642a" - integrity sha512-svTy6zh1ecQojvpbJSgH3aei/Rt7C6i090l5f2WQ4aB05lYHeZIR1qL4wZyyILTbtmnbHP5Yn8MrsOJMGa8RkQ== +eslint-config-prettier@^6.9.0: + version "6.9.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.9.0.tgz#430d24822e82f7deb1e22a435bfa3999fae4ad64" + integrity sha512-k4E14HBtcLv0uqThaI6I/n1LEqROp8XaPu6SO9Z32u5NlGRC07Enu1Bh2KEFw4FNHbekH8yzbIU9kUGxbiGmCA== dependencies: get-stdin "^6.0.0" @@ -7744,17 +7819,17 @@ eslint-import-resolver-node@^0.3.2: resolve "^1.13.1" eslint-module-utils@^2.4.1: - version "2.6.0" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" - integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== + version "2.5.2" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.5.2.tgz#7878f7504824e1b857dd2505b59a8e5eda26a708" + integrity sha512-LGScZ/JSlqGKiT8OC+cYRxseMjyqt6QO54nl281CK93unD89ijSeRV6An8Ci/2nvWVKe8K/Tqdm75RQoIOCr+Q== dependencies: debug "^2.6.9" pkg-dir "^2.0.0" -eslint-plugin-import@^2.20.1: - version "2.20.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz#91fc3807ce08be4837141272c8b99073906e588d" - integrity sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg== +eslint-plugin-import@^2.20.0: + version "2.20.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.0.tgz#d749a7263fb6c29980def8e960d380a6aa6aecaa" + integrity sha512-NK42oA0mUc8Ngn4kONOPsPB1XhbUvNHqF+g307dPV28aknPoiNnKLFd9em4nkswwepdF5ouieqv5Th/63U7YJQ== dependencies: array-includes "^3.0.3" array.prototype.flat "^1.2.1" @@ -7769,12 +7844,13 @@ eslint-plugin-import@^2.20.1: read-pkg-up "^2.0.0" resolve "^1.12.0" -eslint-plugin-jest@^23.8.2: - version "23.8.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.8.2.tgz#6f28b41c67ef635f803ebd9e168f6b73858eb8d4" - integrity sha512-xwbnvOsotSV27MtAe7s8uGWOori0nUsrXh2f1EnpmXua8sDfY6VZhHAhHg2sqK7HBNycRQExF074XSZ7DvfoFg== +eslint-plugin-jest@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.6.0.tgz#508b32f80d44058c8c01257c0ee718cfbd521e9d" + integrity sha512-GH8AhcFXspOLqak7fqnddLXEJsrFyvgO8Bm60SexvKSn1+3rWYESnCiWUOCUcBTprNSDSE4CtAZdM4EyV6gPPw== dependencies: "@typescript-eslint/experimental-utils" "^2.5.0" + micromatch "^4.0.2" eslint-plugin-jsx-a11y@^6.2.3: version "6.2.3" @@ -7803,15 +7879,15 @@ eslint-plugin-promise@^4.2.1: resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz#845fd8b2260ad8f82564c1222fce44ad71d9418a" integrity sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw== -eslint-plugin-react-hooks@^2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.5.1.tgz#4ef5930592588ce171abeb26f400c7fbcbc23cd0" - integrity sha512-Y2c4b55R+6ZzwtTppKwSmK/Kar8AdLiC2f9NADCuxbcTgPPg41Gyqa6b9GppgXSvCtkRw43ZE86CT5sejKC6/g== +eslint-plugin-react-hooks@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.3.0.tgz#53e073961f1f5ccf8dd19558036c1fac8c29d99a" + integrity sha512-gLKCa52G4ee7uXzdLiorca7JIQZPPXRAQDXV83J4bUEeUuc5pIEyZYAZ45Xnxe5IuupxEqHS+hUhSLIimK1EMw== -eslint-plugin-react@^7.19.0: - version "7.19.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz#6d08f9673628aa69c5559d33489e855d83551666" - integrity sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ== +eslint-plugin-react@^7.18.0: + version "7.18.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.18.0.tgz#2317831284d005b30aff8afb7c4e906f13fa8e7e" + integrity sha512-p+PGoGeV4SaZRDsXqdj9OWcOrOpZn8gXoGPcIQTzo2IDMbAKhNDnME9myZWqO3Ic4R3YmwAZ1lDjWl2R2hMUVQ== dependencies: array-includes "^3.1.1" doctrine "^2.1.0" @@ -7821,27 +7897,29 @@ eslint-plugin-react@^7.19.0: object.fromentries "^2.0.2" object.values "^1.1.1" prop-types "^15.7.2" - resolve "^1.15.1" - semver "^6.3.0" - string.prototype.matchall "^4.0.2" - xregexp "^4.3.0" + resolve "^1.14.2" -eslint-plugin-unicorn@^17.2.0: - version "17.2.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-17.2.0.tgz#8f147ba24d417dc5de948c7df7d006108a37a540" - integrity sha512-0kYjrywf0kQxevFz571KrDfYMIRZ5Kq6dDgPU1EEBFeC181r+fAaPatBScWX+/hisKJ4+eCRFebxTeVylsSYmw== +eslint-plugin-unicorn@^15.0.1: + version "15.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-15.0.1.tgz#8379d1d6882f9f8631bec8025ac9e8fe89e43945" + integrity sha512-yahqrPGFUzwH5cnmnj+iPlgPapAiBIZ/ZNSDkhTVPgPCo7/mOEjJ2gDhEclrtQVBE9olmec4N+CKDnJuZ9XpRA== dependencies: ci-info "^2.0.0" clean-regexp "^1.0.0" eslint-ast-utils "^1.1.0" eslint-template-visitor "^1.1.0" import-modules "^2.0.0" - lodash "^4.17.15" + lodash.camelcase "^4.3.0" + lodash.defaultsdeep "^4.6.1" + lodash.kebabcase "^4.1.1" + lodash.snakecase "^4.1.1" + lodash.upperfirst "^4.3.1" read-pkg-up "^7.0.1" - regexp-tree "^0.1.20" + regexp-tree "^0.1.17" + regexpp "^3.0.0" reserved-words "^0.1.2" safe-regex "^2.1.1" - semver "^7.1.2" + semver "^6.3.0" eslint-scope@^4.0.3: version "4.0.3" @@ -7875,13 +7953,6 @@ eslint-utils@^1.4.3: dependencies: eslint-visitor-keys "^1.1.0" -eslint-utils@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.0.0.tgz#7be1cc70f27a72a76cd14aa698bcabed6890e1cd" - integrity sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA== - dependencies: - eslint-visitor-keys "^1.1.0" - eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" @@ -7931,12 +8002,12 @@ eslint@^6.8.0: v8-compile-cache "^2.0.3" espree@^6.1.1, espree@^6.1.2: - version "6.2.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" - integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== + version "6.1.2" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.2.tgz#6c272650932b4f91c3714e5e7b5f5e2ecf47262d" + integrity sha512-2iUPuuPP+yW1PZaMSDM9eyVf8D5P0Hi8h83YtZ5bPc/zHYjII5khoixIUTMO794NOY8F/ThF1Bo8ncZILarUTA== dependencies: - acorn "^7.1.1" - acorn-jsx "^5.2.0" + acorn "^7.1.0" + acorn-jsx "^5.1.0" eslint-visitor-keys "^1.1.0" esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: @@ -7945,11 +8016,11 @@ esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.2.0.tgz#a010a519c0288f2530b3404124bfb5f02e9797fe" - integrity sha512-weltsSqdeWIX9G2qQZz7KlTRJdkkOCTPgLYJUz1Hacf48R4YOwGPHO3+ORfWedqJKbq5WQmsgK90n+pFLIKt/Q== + version "1.0.1" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" + integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== dependencies: - estraverse "^5.0.0" + estraverse "^4.0.0" esrecurse@^4.1.0: version "4.2.1" @@ -7958,17 +8029,12 @@ esrecurse@^4.1.0: dependencies: estraverse "^4.1.0" -estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== -estraverse@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.0.0.tgz#ac81750b482c11cca26e4b07e83ed8f75fbcdc22" - integrity sha512-j3acdrMzqrxmJTNj5dbr1YbjacrYgAxVMeF0gK16E3j494mOe7xygM/ZLIguEQ0ETwAg2hlJCtHRGav+y0Ny5A== - -esutils@^2.0.2: +esutils@^2.0.0, 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== @@ -8082,17 +8148,17 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2: dependencies: homedir-polyfill "^1.0.1" -expect@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/expect/-/expect-25.2.4.tgz#b66e0777c861034ebc21730bb34e1839d5d46806" - integrity sha512-hfuPhPds4yOsZtIw4kwAg70r0hqGmpqekgA+VX7pf/3wZ6FY+xIOXZhNsPMMMsspYG/YIsbAiwqsdnD4Ht+bCA== +expect@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-25.1.0.tgz#7e8d7b06a53f7d66ec927278db3304254ee683ee" + integrity sha512-wqHzuoapQkhc3OKPlrpetsfueuEiMf3iWh0R8+duCu9PIjXoP7HgD5aeypwTnXUAjC8aMsiVDaWwlbJ1RlQ38g== dependencies: - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" ansi-styles "^4.0.0" - jest-get-type "^25.2.1" - jest-matcher-utils "^25.2.3" - jest-message-util "^25.2.4" - jest-regex-util "^25.2.1" + jest-get-type "^25.1.0" + jest-matcher-utils "^25.1.0" + jest-message-util "^25.1.0" + jest-regex-util "^25.1.0" express@^4.17.0: version "4.17.1" @@ -8183,6 +8249,11 @@ extsprintf@^1.2.0: resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= +fake-tag@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fake-tag/-/fake-tag-1.0.1.tgz#1d59da482240a02bd83500ca98976530ed154b0d" + integrity sha512-qmewZoBpa71mM+y6oxXYW/d1xOYQmeIvnEXAt1oCmdP0sqcogWYLepR87QL1jQVLSVMVYDq2cjY6ec/Wu8/4pg== + fast-deep-equal@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" @@ -8210,17 +8281,21 @@ fast-glob@^2.0.2, fast-glob@^2.2.6: merge2 "^1.2.3" micromatch "^3.1.10" -fast-glob@^3.0.1, fast-glob@^3.0.4, fast-glob@^3.2.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.2.tgz#ade1a9d91148965d4bf7c51f72e1ca662d32e63d" - integrity sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A== +fast-glob@^3.0.1, fast-glob@^3.0.4, fast-glob@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.1.1.tgz#87ee30e9e9f3eb40d6f254a7997655da753d7c82" + integrity sha512-nTCREpBY8w8r+boyFYAx21iL6faSsQynliPHM4Uf56SbkyohCNxpVPEH9xrF5TXKy+IsjkPUHDKiUkzBVRXn9g== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" glob-parent "^5.1.0" merge2 "^1.3.0" micromatch "^4.0.2" - picomatch "^2.2.1" + +fast-json-parse@^1.0.0: + 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.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@~2.1.0: version "2.1.0" @@ -8232,17 +8307,17 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= -fast-xml-parser@^3.12.17: - version "3.16.0" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.16.0.tgz#d905e7e6b28fc4648cabebcb074363867fb56ee2" - integrity sha512-U+bpScacfgnfNfIKlWHDu4u6rtOaCyxhblOLJ8sZPkhsjgGqdZmVPBhdOyvdMGCDt8CsAv+cssOP3NzQptNt2w== +fast-safe-stringify@^1.0.8, fast-safe-stringify@^1.2.1: + version "1.2.3" + resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-1.2.3.tgz#9fe22c37fb2f7f86f06b8f004377dbf8f1ee7bc1" + integrity sha512-QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw== fastq@^1.6.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.1.tgz#4570c74f2ded173e71cf0beb08ac70bb85826791" - integrity sha512-mpIH5sKYueh3YyeJwqtVo8sORi0CgtmkVbK6kZStpQlZBYQuTzG2CZ7idSiJuA7bY0SFCWUc5WIs+oYumGCQNw== + version "1.6.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.0.tgz#4ec8a38f4ac25f21492673adb7eae9cfef47d1c2" + integrity sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA== dependencies: - reusify "^1.0.4" + reusify "^1.0.0" fault@^1.0.2: version "1.0.4" @@ -8265,7 +8340,7 @@ fb-watchman@^2.0.0: dependencies: bser "2.1.1" -fbjs@^0.8.4: +fbjs@^0.8.0: version "0.8.17" resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= @@ -8300,9 +8375,9 @@ fetch-mock@^7.2.5: whatwg-url "^6.5.0" figgy-pudding@^3.4.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== + version "3.5.1" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" + integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== figures@^1.7.0: version "1.7.0" @@ -8319,10 +8394,10 @@ figures@^2.0.0: dependencies: escape-string-regexp "^1.0.5" -figures@^3.0.0, figures@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== +figures@^3.0.0, figures@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.1.0.tgz#4b198dd07d8d71530642864af2d45dd9e459c4ec" + integrity sha512-ravh8VRXqHuMvZt/d8GblBeqDMkdJMBdv/2KntFH+ra5MXkO7nxNKpzQ3n6QD/2da1kH0aWmNISdvhM7gl2gVg== dependencies: escape-string-regexp "^1.0.5" @@ -8412,7 +8487,7 @@ finalhandler@~1.1.2: statuses "~1.5.0" unpipe "~1.0.0" -find-cache-dir@^2.1.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== @@ -8422,12 +8497,12 @@ find-cache-dir@^2.1.0: pkg-dir "^3.0.0" find-cache-dir@^3.0.0, find-cache-dir@^3.2.0: - version "3.3.1" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" - integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== + version "3.2.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.2.0.tgz#e7fe44c1abc1299f516146e563108fd1006c1874" + integrity sha512-1JKclkYYsf1q9WIJKLZa9S9muC+08RIjzAlLrK4QcYLJMS6mk9yombQ9qf+zJ7H9LS800k0s44L4sDq9VYzqyg== dependencies: commondir "^1.0.1" - make-dir "^3.0.2" + make-dir "^3.0.0" pkg-dir "^4.1.0" find-node-modules@2.0.0: @@ -8511,10 +8586,15 @@ flat-cache@^2.0.1: rimraf "2.6.3" write "1.0.3" +flatstr@^1.0.4: + version "1.0.12" + resolved "https://registry.yarnpkg.com/flatstr/-/flatstr-1.0.12.tgz#c2ba6a08173edbb6c9640e3055b95e287ceb5931" + integrity sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw== + flatted@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" - integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== + version "2.0.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" + integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== flush-write-stream@^1.0.0: version "1.1.1" @@ -8529,6 +8609,13 @@ focus-lock@^0.6.6: resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-0.6.6.tgz#98119a755a38cfdbeda0280eaa77e307eee850c7" integrity sha512-Dx69IXGCq1qsUExWuG+5wkiMqVM/zGx/reXSJSLogECwp3x6KeNQZ+NAetgxEFpnC41rD8U3+jRCW68+LNzdtw== +follow-redirects@1.5.10: + version "1.5.10" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" + integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ== + dependencies: + debug "=3.1.0" + for-in@^0.1.3: version "0.1.8" resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" @@ -8565,19 +8652,6 @@ fork-ts-checker-webpack-plugin@1.5.0: tapable "^1.0.0" worker-rpc "^0.1.0" -fork-ts-checker-webpack-plugin@^4.1.0, fork-ts-checker-webpack-plugin@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.2.tgz#ab160c702e1bdf2a271ee4f7236c3280aeba02a7" - integrity sha512-3Qe6GxiidhyChpNcfQ9qaNEeO0FavxpvS1ArEy3boSWT05uCUTWPFMNl4OeH3XqsZymWv7t6EkTyj6YHJbVXig== - dependencies: - babel-code-frame "^6.22.0" - 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" - form-data@~2.3.2: version "2.3.3" resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" @@ -8688,9 +8762,9 @@ fs.realpath@^1.0.0: integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= fsevents@^1.2.7: - version "1.2.12" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.12.tgz#db7e0d8ec3b0b45724fd4d83d43554a8f1f0de5c" - integrity sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q== + version "1.2.11" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz#67bf57f4758f02ede88fb2a1712fef4d15358be3" + integrity sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw== dependencies: bindings "^1.5.0" nan "^2.12.1" @@ -8725,9 +8799,9 @@ functions-have-names@^1.2.0: integrity sha512-j48B/ZI7VKs3sgeI2cZp7WXWmZXu7Iq5pl5/vptV5N2mq+DGFuS/ulaDjtaoLpYzuD6u8UgrUKHfgo7fDTSiBA== fuse.js@^3.4.6: - version "3.6.1" - resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.6.1.tgz#7de85fdd6e1b3377c23ce010892656385fd9b10c" - integrity sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw== + version "3.4.6" + resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.4.6.tgz#545c3411fed88bf2e27c457cab6e73e7af697a45" + integrity sha512-H6aJY4UpLFwxj1+5nAvufom5b2BT2v45P1MkPvdGIK8fWjQx/7o6tTT1+ALV0yawQvbmvCF0ufl2et8eJ7v7Cg== gauge@~2.7.3: version "2.7.4" @@ -8753,6 +8827,11 @@ gensync@^1.0.0-beta.1: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== +get-caller-file@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" + integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== + get-caller-file@^2.0.1: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" @@ -8944,9 +9023,9 @@ glob-parent@^3.1.0: path-dirname "^1.0.0" glob-parent@^5.0.0, glob-parent@^5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + version "5.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" + integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw== dependencies: is-glob "^4.0.1" @@ -9041,9 +9120,9 @@ globals@^11.1.0: integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^12.1.0: - version "12.4.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" - integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== + version "12.3.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-12.3.0.tgz#1e564ee5c4dded2ab098b0f88f24702a3c56be13" + integrity sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw== dependencies: type-fest "^0.8.1" @@ -9121,12 +9200,12 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== -grouped-queue@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/grouped-queue/-/grouped-queue-1.0.0.tgz#5bdb97934a9a17b19626ff3cc23c103f2622ef49" - integrity sha512-XslfWrAGCYovQjveHODR0hllUrsn3UtvPFTkamHbgVHmkUA6eCIDmw3JDWVLJvuntTvYjwaPGamlyzK4/HAEOA== +grouped-queue@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/grouped-queue/-/grouped-queue-0.3.3.tgz#c167d2a5319c5a0e0964ef6a25b7c2df8996c85c" + integrity sha1-wWfSpTGcWg4JZO9qJbfC34mWyFw= dependencies: - lodash "^4.17.15" + lodash "^4.17.2" growly@^1.3.0: version "1.3.0" @@ -9147,9 +9226,9 @@ gzip-size@5.1.1: pify "^4.0.1" handlebars@^4.4.0: - version "4.7.3" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.3.tgz#8ece2797826886cf8082d1726ff21d2a022550ee" - integrity sha512-SRGwSYuNfx8DwHD/6InAPzD6RgeruWLT+B8e8a7gGs8FWgHzlExpTFMEq2IA6QpAfOClpKHy6+8IqTjeBCu6Kg== + version "4.7.2" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.2.tgz#01127b3840156a0927058779482031afe0e730d7" + integrity sha512-4PwqDL2laXtTWZghzzCtunQUTLbo31pcCJrd/B/9JP8XbhVzpS5ZXuKqlOzsd1rtcaLo4KqAn8nl8mkknS4MHw== dependencies: neo-async "^2.6.0" optimist "^0.6.1" @@ -9162,7 +9241,7 @@ har-schema@^2.0.0: resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= -har-validator@~5.1.3: +har-validator@~5.1.0: version "5.1.3" resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== @@ -9170,11 +9249,6 @@ har-validator@~5.1.3: ajv "^6.5.5" har-schema "^2.0.0" -harmony-reflect@^1.4.6: - version "1.6.1" - resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.1.tgz#c108d4f2bb451efef7a37861fdbdae72c9bdefa9" - integrity sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA== - has-ansi@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" @@ -9257,14 +9331,14 @@ hash.js@^1.0.0, hash.js@^1.0.3: minimalistic-assert "^1.0.1" hast-util-parse-selector@^2.0.0: - version "2.2.4" - resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.4.tgz#60c99d0b519e12ab4ed32e58f150ec3f61ed1974" - integrity sha512-gW3sxfynIvZApL4L07wryYF4+C9VvH3AUi7LAnVXV4MneGEgwOByXvFo18BgmTWnm7oHAe874jKbIB1YhHSIzA== + version "2.2.3" + resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.3.tgz#57edd449103900c7f63fd9e6f694ffd7e4634719" + integrity sha512-nxbeqjQNxsvo/uYYAw9kij6td05YVUlf1qti09rVfbWSLT5H6wo3c+USIwX6nzXWk5kFZzXnEqO82856r0aM2Q== hastscript@^5.0.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-5.1.2.tgz#bde2c2e56d04c62dd24e8c5df288d050a355fb8a" - integrity sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ== + version "5.1.1" + resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-5.1.1.tgz#71726ee1e97220575d1f29a8e937387d99d48275" + integrity sha512-xHo1Hkcqd0LlWNuDL3/BxwhgAGp3d7uEvCMgCTrBY+zsOooPPH+8KAvW8PCgl+GB8H3H44nfSaF0A4BQ+4xlYg== dependencies: comma-separated-tokens "^1.0.0" hast-util-parse-selector "^2.0.0" @@ -9313,9 +9387,9 @@ homedir-polyfill@^1.0.1: parse-passwd "^1.0.0" hosted-git-info@^2.1.4, hosted-git-info@^2.7.1: - version "2.8.8" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" - integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== + version "2.8.5" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c" + integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg== html-element-map@^1.2.0: version "1.2.0" @@ -9337,31 +9411,28 @@ html-entities@^1.2.0: integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8= 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== + version "2.0.0" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.0.tgz#71e87f931de3fe09e56661ab9a29aadec707b491" + integrity sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig== html-minifier-terser@^5.0.1: - version "5.0.5" - resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.0.5.tgz#8f12f639789f04faa9f5cf2ff9b9f65607f21f8b" - integrity sha512-cBSFFghQh/uHcfSiL42KxxIRMF7A144+3E44xdlctIjxEmkEfCvouxNyFH2wysXk1fCGBPwtcr3hDWlGTfkDew== + version "5.0.2" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.0.2.tgz#0e67a0b062ae1dd0719fc73199479298f807ae16" + integrity sha512-VAaitmbBuHaPKv9bj47XKypRhgDxT/cDLvsPiiF7w+omrN3K0eQhpigV9Z1ilrmHa9e0rOYcD6R/+LCDADGcnQ== dependencies: - camel-case "^4.1.1" - clean-css "^4.2.3" - commander "^4.1.1" + camel-case "^3.0.0" + clean-css "^4.2.1" + commander "^4.0.0" he "^1.2.0" - param-case "^3.0.3" + param-case "^2.1.1" relateurl "^0.2.7" - terser "^4.6.3" + terser "^4.3.9" html-webpack-plugin@^4.0.0-beta.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.3.tgz#70659c8836210249cb6fa9dd6706a957547666d5" - integrity sha512-XCm5MGK6Yv/ey30fbhqjKIGm1r6G1HxmNorJ/xUdL/Zj3mOLtb9ZHEEIw0e4h3VzgyUrp8szCJh3VN9z1LNx7A== + version "4.0.0-beta.11" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.11.tgz#3059a69144b5aecef97708196ca32f9e68677715" + integrity sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg== 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" @@ -9464,9 +9535,9 @@ humanize-url@^1.0.0: strip-url-auth "^1.0.0" husky@^4.2.1: - version "4.2.3" - resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.3.tgz#3b18d2ee5febe99e27f2983500202daffbc3151e" - integrity sha512-VxTsSTRwYveKXN4SaH1/FefRJYCtx+wx04sSVcOpD7N2zjoHxa+cEJ07Qg5NmV3HAK+IRKOyNVpi2YBIVccIfQ== + version "4.2.1" + resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.1.tgz#b09f1bd9129e6c323cc515dc17081d0615e2d7c1" + integrity sha512-Qa0lRreeIf4Tl92sSs42ER6qc3hzoyQPPorzOrFWfPEVbdi6LuvJEqWKPk905fOWIR76iBpp7ECZNIwk+a8xuQ== dependencies: chalk "^3.0.0" ci-info "^2.0.0" @@ -9496,10 +9567,10 @@ hygen@^5.0.3: ts-jest "^24.1.0" yargs-parser "^13.0.0" -i18next@^19.3.3: - version "19.3.4" - resolved "https://registry.yarnpkg.com/i18next/-/i18next-19.3.4.tgz#512de50ee6075df825c646e1ce646a104f0938c9" - integrity sha512-ef7AxxutzdhBsBNugE9jgqsbwesG1muJOtZ9ZrPARPs/jXegViTp4+8JCeMp8BAyTIo1Zn0giqc8+2UpqFjU0w== +i18next@^19.0.1: + version "19.0.3" + resolved "https://registry.yarnpkg.com/i18next/-/i18next-19.0.3.tgz#31fd3165762d9802e08a2a86932db4eff5c862e9" + integrity sha512-Ru4afr++b4cUApsIBifcMYyWG9Nx8wlFdq4DuOF+UuoPoQKfuh0iAVMekTjs6w1CZLUOVb5QZEuoYRLmu17EIA== dependencies: "@babel/runtime" "^7.3.1" @@ -9517,13 +9588,6 @@ icss-utils@^4.0.0, icss-utils@^4.1.1: 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.1.13" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" @@ -9750,23 +9814,23 @@ inquirer@^6.0.0, inquirer@^6.2.0: strip-ansi "^5.1.0" through "^2.3.6" -inquirer@^7.0.0, inquirer@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" - integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== +inquirer@^7.0.0, inquirer@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.0.3.tgz#f9b4cd2dff58b9f73e8d43759436ace15bed4567" + integrity sha512-+OiOVeVydu4hnCGLCSX+wedovR/Yzskv9BFqUNNKq9uU2qg7LCcCo3R86S2E7WLo0y/x2pnEZfZe1CoYnORUAw== dependencies: ansi-escapes "^4.2.1" - chalk "^3.0.0" + chalk "^2.4.2" cli-cursor "^3.1.0" cli-width "^2.0.0" external-editor "^3.0.3" figures "^3.0.0" lodash "^4.17.15" mute-stream "0.0.8" - run-async "^2.4.0" + run-async "^2.2.0" rxjs "^6.5.3" string-width "^4.1.0" - strip-ansi "^6.0.0" + strip-ansi "^5.1.0" through "^2.3.6" internal-slot@^1.0.2: @@ -9795,6 +9859,11 @@ invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4: dependencies: loose-envify "^1.0.0" +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= + invert-kv@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-3.0.0.tgz#9db0c4817a1ec754df8067df6acf6828286f6a84" @@ -9810,10 +9879,10 @@ ip@1.1.5, ip@^1.1.5: resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== +ipaddr.js@1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" + integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA== is-accessor-descriptor@^0.1.6: version "0.1.6" @@ -9830,14 +9899,14 @@ is-accessor-descriptor@^1.0.0: kind-of "^6.0.0" 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== + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.3.tgz#eb04cc47219a8895d8450ace4715abff2258a1f8" + integrity sha512-eEMa6MKpHFzw38eKm56iNNi6GJ7lf6aLLio7Kr23sJPAECscgRtZvOBYybejWDQ2bM949Y++61PY+udzj5QMLA== 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== + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.3.tgz#57ae21c374277b3defe0274c640a5704b8f6657c" + integrity sha512-A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA== dependencies: is-alphabetical "^1.0.0" is-decimal "^1.0.0" @@ -9869,6 +9938,11 @@ is-buffer@^1.0.2, is-buffer@^1.1.5: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== +is-buffer@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" + integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== + is-callable@^1.1.4, is-callable@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" @@ -9901,9 +9975,9 @@ is-date-object@^1.0.1: integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 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== + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.3.tgz#381068759b9dc807d8c0dc0bfbae2b68e1da48b7" + integrity sha512-bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ== is-descriptor@^0.1.0: version "0.1.6" @@ -9928,11 +10002,6 @@ is-directory@^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.0.0" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" - integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== - is-dom@^1.0.9: version "1.1.0" resolved "https://registry.yarnpkg.com/is-dom/-/is-dom-1.1.0.tgz#af1fced292742443bb59ca3f76ab5e80907b4e8a" @@ -9964,9 +10033,11 @@ is-extglob@^2.1.0, is-extglob@^2.1.1: integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= is-finite@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" - integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= + dependencies: + number-is-nan "^1.0.0" is-fullwidth-code-point@^1.0.0: version "1.0.0" @@ -10017,9 +10088,9 @@ is-glob@^4.0.0, is-glob@^4.0.1: 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== + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.3.tgz#e8a426a69b6d31470d3a33a47bb825cda02506ee" + integrity sha512-zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA== is-lower-case@^1.1.0: version "1.1.3" @@ -10028,7 +10099,7 @@ is-lower-case@^1.1.0: dependencies: lower-case "^1.1.0" -is-map@^2.0.1: +is-map@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.1.tgz#520dafc4307bb8ebc33b813de5ce7c9400d644a1" integrity sha512-T/S49scO8plUiAOA2DBTBG3JHpn1yiw0kRp6dgiZ0v2/6twi5eiB0rHtHFH9ZIrvlWc6+4O+m4zg5+Z833aXgw== @@ -10125,7 +10196,7 @@ is-scoped@^1.0.0: dependencies: scoped-regex "^1.0.0" -is-set@^2.0.1: +is-set@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43" integrity sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA== @@ -10203,7 +10274,7 @@ is-wsl@^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.1.0, is-wsl@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.1.1.tgz#4a1c152d429df3d441669498e2486d3596ebaf1d" integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog== @@ -10224,9 +10295,9 @@ isarray@^2.0.5: integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== isbinaryfile@^4.0.0: - version "4.0.5" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.5.tgz#7193454fdd7fc0b12855c36c48d4ac7368fa3ec9" - integrity sha512-Jvz0gpTh1AILHMCBUyqq7xv1ZOQrxTDwyp1/QUq1xFpOBvp4AH5uEobPePJht8KnBGqQIH7We6OR73mXsjG0cA== + version "4.0.4" + resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.4.tgz#6803f81a8944201c642b6e17da041e24deb78712" + integrity sha512-pEutbN134CzcjlLS1myKX/uxNjwU5eBVSprvkpv3+3dqhBHUZLIWJQowC40w5c0Zf19vBY8mrZl88y5J4RAPbQ== isexe@^2.0.0: version "2.0.0" @@ -10269,9 +10340,9 @@ istanbul-lib-coverage@^3.0.0: integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== istanbul-lib-instrument@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.1.tgz#61f13ac2c96cfefb076fe7131156cc05907874e6" - integrity sha512-imIchxnodll7pvQBYOqUu88EufLCU56LMeFPZZM/fJZ1irYcYdqroaV+ACK1Ila8ls09iEYArp+nqyC6lW1Vfg== + version "4.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.0.tgz#53321a7970f076262fd3292c8f9b2e4ac544aae1" + integrity sha512-Nm4wVHdo7ZXSG30KjZ2Wl5SU/Bw7bDx1PdaiIFzEStdjs0H12mOTncn1GVYuqQSaZxpg87VGBRsVRPGD2cD1AQ== dependencies: "@babel/core" "^7.7.5" "@babel/parser" "^7.7.5" @@ -10300,9 +10371,9 @@ istanbul-lib-source-maps@^4.0.0: source-map "^0.6.1" istanbul-reports@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.1.tgz#1343217244ad637e0c3b18e7f6b746941a9b5e9a" - integrity sha512-Vm9xwCiQ8t2cNNnckyeAV0UdxKpcQUz4nMxsBvIu8n2kmPSiyb5uaF/8LpmKr+yqL/MdOXaX2Nmdo4Qyxium9Q== + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.0.tgz#d4d16d035db99581b6194e119bbf36c963c5eb70" + integrity sha512-2osTcC8zcOSUkImzN2EWQta3Vdi4WjjKw99P2yWx5mLnigAM0Rd5uYFn1cf2i/Ois45GkNjaoTqc5CxgMSX80A== dependencies: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" @@ -10334,6 +10405,11 @@ iterate-value@^1.0.0: es-get-iterator "^1.0.2" iterate-iterator "^1.0.1" +java-properties@^0.2.9: + version "0.2.10" + resolved "https://registry.yarnpkg.com/java-properties/-/java-properties-0.2.10.tgz#2551560c25fa1ad94d998218178f233ad9b18f60" + integrity sha512-CpKJh9VRNhS+XqZtg1UMejETGEiqwCGDC/uwPEEQwc2nfdbSm73SIE29TplG2gLYuBOOTNDqxzG6A9NtEPLt0w== + java-properties@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/java-properties/-/java-properties-1.0.2.tgz#ccd1fa73907438a5b5c38982269d0e771fe78211" @@ -10344,183 +10420,180 @@ jed@^1.1.1: resolved "https://registry.yarnpkg.com/jed/-/jed-1.1.1.tgz#7a549bbd9ffe1585b0cd0a191e203055bee574b4" integrity sha1-elSbvZ/+FYWwzQoZHiAwVb7ldLQ= -jest-changed-files@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.2.3.tgz#ad19deef9e47ba37efb432d2c9a67dfd97cc78af" - integrity sha512-EFxy94dvvbqRB36ezIPLKJ4fDIC+jAdNs8i8uTwFpaXd6H3LVc3ova1lNS4ZPWk09OCR2vq5kSdSQgar7zMORg== +jest-changed-files@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.1.0.tgz#73dae9a7d9949fdfa5c278438ce8f2ff3ec78131" + integrity sha512-bdL1aHjIVy3HaBO3eEQeemGttsq1BDlHgWcOjEOIAcga7OOEGWHD2WSu8HhL7I1F0mFFyci8VKU4tRNk+qtwDA== dependencies: - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" execa "^3.2.0" throat "^5.0.0" -jest-cli@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-25.2.4.tgz#021c2383904696597abc060dcb133c82ebd8bfcc" - integrity sha512-zeY2pRDWKj2LZudIncvvguwLMEdcnJqc2jJbwza1beqi80qqLvkPF/BjbFkK2sIV3r+mfTJS+7ITrvK6pCdRjg== +jest-cli@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-25.1.0.tgz#75f0b09cf6c4f39360906bf78d580be1048e4372" + integrity sha512-p+aOfczzzKdo3AsLJlhs8J5EW6ffVidfSZZxXedJ0mHPBOln1DccqFmGCoO8JWd4xRycfmwy1eoQkMsF8oekPg== dependencies: - "@jest/core" "^25.2.4" - "@jest/test-result" "^25.2.4" - "@jest/types" "^25.2.3" + "@jest/core" "^25.1.0" + "@jest/test-result" "^25.1.0" + "@jest/types" "^25.1.0" chalk "^3.0.0" exit "^0.1.2" import-local "^3.0.2" is-ci "^2.0.0" - jest-config "^25.2.4" - jest-util "^25.2.3" - jest-validate "^25.2.3" + jest-config "^25.1.0" + jest-util "^25.1.0" + jest-validate "^25.1.0" prompts "^2.0.1" - realpath-native "^2.0.0" - yargs "^15.3.1" + realpath-native "^1.1.0" + yargs "^15.0.0" -jest-config@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-25.2.4.tgz#f4f33238979f225683179c89d1e402893008975d" - integrity sha512-fxy3nIpwJqOUQJRVF/q+pNQb6dv5b9YufOeCbpPZJ/md1zXpiupbhfehpfODhnKOfqbzSiigtSLzlWWmbRxnqQ== +jest-config@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-25.1.0.tgz#d114e4778c045d3ef239452213b7ad3ec1cbea90" + integrity sha512-tLmsg4SZ5H7tuhBC5bOja0HEblM0coS3Wy5LTCb2C8ZV6eWLewHyK+3qSq9Bi29zmWQ7ojdCd3pxpx4l4d2uGw== dependencies: "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^25.2.4" - "@jest/types" "^25.2.3" - babel-jest "^25.2.4" + "@jest/test-sequencer" "^25.1.0" + "@jest/types" "^25.1.0" + babel-jest "^25.1.0" chalk "^3.0.0" - deepmerge "^4.2.2" glob "^7.1.1" - jest-environment-jsdom "^25.2.4" - jest-environment-node "^25.2.4" - jest-get-type "^25.2.1" - jest-jasmine2 "^25.2.4" - jest-regex-util "^25.2.1" - jest-resolve "^25.2.3" - jest-util "^25.2.3" - jest-validate "^25.2.3" + jest-environment-jsdom "^25.1.0" + jest-environment-node "^25.1.0" + jest-get-type "^25.1.0" + jest-jasmine2 "^25.1.0" + jest-regex-util "^25.1.0" + jest-resolve "^25.1.0" + jest-util "^25.1.0" + jest-validate "^25.1.0" micromatch "^4.0.2" - pretty-format "^25.2.3" - realpath-native "^2.0.0" + pretty-format "^25.1.0" + realpath-native "^1.1.0" -jest-diff@^25.1.0, jest-diff@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.2.3.tgz#54d601a0a754ef26e808a8c8dbadd278c215aa3f" - integrity sha512-VtZ6LAQtaQpFsmEzps15dQc5ELbJxy4L2DOSo2Ev411TUEtnJPkAMD7JneVypeMJQ1y3hgxN9Ao13n15FAnavg== +jest-diff@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.1.0.tgz#58b827e63edea1bc80c1de952b80cec9ac50e1ad" + integrity sha512-nepXgajT+h017APJTreSieh4zCqnSHEJ1iT8HDlewu630lSJ4Kjjr9KNzm+kzGwwcpsDE6Snx1GJGzzsefaEHw== dependencies: chalk "^3.0.0" - diff-sequences "^25.2.1" - jest-get-type "^25.2.1" - pretty-format "^25.2.3" + diff-sequences "^25.1.0" + jest-get-type "^25.1.0" + pretty-format "^25.1.0" -jest-docblock@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-25.2.3.tgz#ac45280c43d59e7139f9fbe5896c6e0320c01ebb" - integrity sha512-d3/tmjLLrH5fpRGmIm3oFa3vOaD/IjPxtXVOrfujpfJ9y1tCDB1x/tvunmdOVAyF03/xeMwburl6ITbiQT1mVA== +jest-docblock@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-25.1.0.tgz#0f44bea3d6ca6dfc38373d465b347c8818eccb64" + integrity sha512-370P/mh1wzoef6hUKiaMcsPtIapY25suP6JqM70V9RJvdKLrV4GaGbfUseUVk4FZJw4oTZ1qSCJNdrClKt5JQA== dependencies: detect-newline "^3.0.0" -jest-each@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-25.2.3.tgz#64067ba1508ebbd07e9b126c173ab371e8e6309d" - integrity sha512-RTlmCjsBDK2c9T5oO4MqccA3/5Y8BUtiEy7OOQik1iyCgdnNdHbI0pNEpyapZPBG0nlvZ4mIu7aY6zNUvLraAQ== +jest-each@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-25.1.0.tgz#a6b260992bdf451c2d64a0ccbb3ac25e9b44c26a" + integrity sha512-R9EL8xWzoPySJ5wa0DXFTj7NrzKpRD40Jy+zQDp3Qr/2QmevJgkN9GqioCGtAJ2bW9P/MQRznQHQQhoeAyra7A== dependencies: - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" chalk "^3.0.0" - jest-get-type "^25.2.1" - jest-util "^25.2.3" - pretty-format "^25.2.3" - -jest-environment-jsdom@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-25.2.4.tgz#f2783541d0538b1bc43641703372cea6a2e83611" - integrity sha512-5dm+tNwrLmhELdjAwiQnVGf/U9iFMWdTL4/wyrMg2HU6RQnCiuxpWbIigLHUhuP1P2Ak0F4k3xhjrikboKyShA== - dependencies: - "@jest/environment" "^25.2.4" - "@jest/fake-timers" "^25.2.4" - "@jest/types" "^25.2.3" - jest-mock "^25.2.3" - jest-util "^25.2.3" - jsdom "^15.2.1" - -jest-environment-node@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-25.2.4.tgz#dc211dfb0d8b66dfc1965a8f846e72e54ff0c430" - integrity sha512-Jkc5Y8goyXPrLRHnrUlqC7P4o5zn2m4zw6qWoRJ59kxV1f2a5wK+TTGhrhCwnhW/Ckpdl/pm+LufdvhJkvJbiw== - dependencies: - "@jest/environment" "^25.2.4" - "@jest/fake-timers" "^25.2.4" - "@jest/types" "^25.2.3" - jest-mock "^25.2.3" - jest-util "^25.2.3" - semver "^6.3.0" + jest-get-type "^25.1.0" + jest-util "^25.1.0" + pretty-format "^25.1.0" + +jest-environment-jsdom@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-25.1.0.tgz#6777ab8b3e90fd076801efd3bff8e98694ab43c3" + integrity sha512-ILb4wdrwPAOHX6W82GGDUiaXSSOE274ciuov0lztOIymTChKFtC02ddyicRRCdZlB5YSrv3vzr1Z5xjpEe1OHQ== + dependencies: + "@jest/environment" "^25.1.0" + "@jest/fake-timers" "^25.1.0" + "@jest/types" "^25.1.0" + jest-mock "^25.1.0" + jest-util "^25.1.0" + jsdom "^15.1.1" + +jest-environment-node@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-25.1.0.tgz#797bd89b378cf0bd794dc8e3dca6ef21126776db" + integrity sha512-U9kFWTtAPvhgYY5upnH9rq8qZkj6mYLup5l1caAjjx9uNnkLHN2xgZy5mo4SyLdmrh/EtB9UPpKFShvfQHD0Iw== + dependencies: + "@jest/environment" "^25.1.0" + "@jest/fake-timers" "^25.1.0" + "@jest/types" "^25.1.0" + jest-mock "^25.1.0" + jest-util "^25.1.0" -jest-get-type@^25.2.1: - version "25.2.1" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.1.tgz#6c83de603c41b1627e6964da2f5454e6aa3c13a6" - integrity sha512-EYjTiqcDTCRJDcSNKbLTwn/LcDPEE7ITk8yRMNAOjEsN6yp+Uu+V1gx4djwnuj/DvWg0YGmqaBqPVGsPxlvE7w== +jest-get-type@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.1.0.tgz#1cfe5fc34f148dc3a8a3b7275f6b9ce9e2e8a876" + integrity sha512-yWkBnT+5tMr8ANB6V+OjmrIJufHtCAqI5ic2H40v+tRqxDmE0PGnIiTyvRWFOMtmVHYpwRqyazDbTnhpjsGvLw== -jest-haste-map@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.2.3.tgz#2649392b5af191f0167a27bfb62e5d96d7eaaade" - integrity sha512-pAP22OHtPr4qgZlJJFks2LLgoQUr4XtM1a+F5UaPIZNiCRnePA0hM3L7aiJ0gzwiNIYwMTfKRwG/S1L28J3A3A== +jest-haste-map@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.1.0.tgz#ae12163d284f19906260aa51fd405b5b2e5a4ad3" + integrity sha512-/2oYINIdnQZAqyWSn1GTku571aAfs8NxzSErGek65Iu5o8JYb+113bZysRMcC/pjE5v9w0Yz+ldbj9NxrFyPyw== dependencies: - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" anymatch "^3.0.3" fb-watchman "^2.0.0" graceful-fs "^4.2.3" - jest-serializer "^25.2.1" - jest-util "^25.2.3" - jest-worker "^25.2.1" + jest-serializer "^25.1.0" + jest-util "^25.1.0" + jest-worker "^25.1.0" micromatch "^4.0.2" sane "^4.0.3" walker "^1.0.7" - which "^2.0.2" optionalDependencies: fsevents "^2.1.2" -jest-jasmine2@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-25.2.4.tgz#5f77de83e1027f0c7588137055a80da773872374" - integrity sha512-juoKrmNmLwaheNbAg71SuUF9ovwUZCFNTpKVhvCXWk+SSeORcIUMptKdPCoLXV3D16htzhTSKmNxnxSk4SrTjA== +jest-jasmine2@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-25.1.0.tgz#681b59158a430f08d5d0c1cce4f01353e4b48137" + integrity sha512-GdncRq7jJ7sNIQ+dnXvpKO2MyP6j3naNK41DTTjEAhLEdpImaDA9zSAZwDhijjSF/D7cf4O5fdyUApGBZleaEg== dependencies: "@babel/traverse" "^7.1.0" - "@jest/environment" "^25.2.4" - "@jest/source-map" "^25.2.1" - "@jest/test-result" "^25.2.4" - "@jest/types" "^25.2.3" + "@jest/environment" "^25.1.0" + "@jest/source-map" "^25.1.0" + "@jest/test-result" "^25.1.0" + "@jest/types" "^25.1.0" chalk "^3.0.0" co "^4.6.0" - expect "^25.2.4" + expect "^25.1.0" is-generator-fn "^2.0.0" - jest-each "^25.2.3" - jest-matcher-utils "^25.2.3" - jest-message-util "^25.2.4" - jest-runtime "^25.2.4" - jest-snapshot "^25.2.4" - jest-util "^25.2.3" - pretty-format "^25.2.3" + jest-each "^25.1.0" + jest-matcher-utils "^25.1.0" + jest-message-util "^25.1.0" + jest-runtime "^25.1.0" + jest-snapshot "^25.1.0" + jest-util "^25.1.0" + pretty-format "^25.1.0" throat "^5.0.0" -jest-leak-detector@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-25.2.3.tgz#4cf39f137925e0061c04c24ca65cae36465f0238" - integrity sha512-yblCMPE7NJKl7778Cf/73yyFWAas5St0iiEBwq7RDyaz6Xd4WPFnPz2j7yDb/Qce71A1IbDoLADlcwD8zT74Aw== +jest-leak-detector@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-25.1.0.tgz#ed6872d15aa1c72c0732d01bd073dacc7c38b5c6" + integrity sha512-3xRI264dnhGaMHRvkFyEKpDeaRzcEBhyNrOG5oT8xPxOyUAblIAQnpiR3QXu4wDor47MDTiHbiFcbypdLcLW5w== dependencies: - jest-get-type "^25.2.1" - pretty-format "^25.2.3" + jest-get-type "^25.1.0" + pretty-format "^25.1.0" -jest-matcher-utils@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.2.3.tgz#59285bd6d6c810debc9caa585ed985e46a3f28fd" - integrity sha512-ZmiXiwQRVM9MoKjGMP5YsGGk2Th5ncyRxfXKz5AKsmU8m43kgNZirckVzaP61MlSa9LKmXbevdYqVp1ZKAw2Rw== +jest-matcher-utils@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.1.0.tgz#fa5996c45c7193a3c24e73066fc14acdee020220" + integrity sha512-KGOAFcSFbclXIFE7bS4C53iYobKI20ZWleAdAFun4W1Wz1Kkej8Ng6RRbhL8leaEvIOjGXhGf/a1JjO8bkxIWQ== dependencies: chalk "^3.0.0" - jest-diff "^25.2.3" - jest-get-type "^25.2.1" - pretty-format "^25.2.3" + jest-diff "^25.1.0" + jest-get-type "^25.1.0" + pretty-format "^25.1.0" -jest-message-util@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.2.4.tgz#b1441b9c82f5c11fc661303cbf200a2f136a7762" - integrity sha512-9wWMH3Bf+GVTv0GcQLmH/FRr0x0toptKw9TA8U5YFLVXx7Tq9pvcNzTyJrcTJ+wLqNbMPPJlJNft4MnlcrtF5Q== +jest-message-util@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.1.0.tgz#702a9a5cb05c144b9aa73f06e17faa219389845e" + integrity sha512-Nr/Iwar2COfN22aCqX0kCVbXgn8IBm9nWf4xwGr5Olv/KZh0CZ32RKgZWMVDXGdOahicM10/fgjdimGNX/ttCQ== dependencies: "@babel/code-frame" "^7.0.0" - "@jest/test-result" "^25.2.4" - "@jest/types" "^25.2.3" + "@jest/test-result" "^25.1.0" + "@jest/types" "^25.1.0" "@types/stack-utils" "^1.0.1" chalk "^3.0.0" micromatch "^4.0.2" @@ -10532,180 +10605,181 @@ jest-mock-console@^1.0.0: resolved "https://registry.yarnpkg.com/jest-mock-console/-/jest-mock-console-1.0.0.tgz#0ca2cbea3aa0af4893c8c5f3c2de45c3d4d15629" integrity sha512-bN9UjH+Jd/5Gs+p9Xt9Mai4SoUQRFd3f+ZOSCjlcbuVRUhNvl1y9jvys6L7BUx+1Uz+3jOoaq1O+C6j3sSu7SQ== -jest-mock@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-25.2.3.tgz#b37a581f59d61bd91db27a99bf7eb8b3e5e993d5" - integrity sha512-xlf+pyY0j47zoCs8zGGOGfWyxxLximE8YFOfEK8s4FruR8DtM/UjNj61um+iDuMAFEBDe1bhCXkqiKoCmWjJzg== +jest-mock@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-25.1.0.tgz#411d549e1b326b7350b2e97303a64715c28615fd" + integrity sha512-28/u0sqS+42vIfcd1mlcg4ZVDmSUYuNvImP4X2lX5hRMLW+CN0BeiKVD4p+ujKKbSPKd3rg/zuhCF+QBLJ4vag== dependencies: - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" jest-pnp-resolver@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== -jest-regex-util@^25.2.1: - version "25.2.1" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.2.1.tgz#db64b0d15cd3642c93b7b9627801d7c518600584" - integrity sha512-wroFVJw62LdqTdkL508ZLV82FrJJWVJMIuYG7q4Uunl1WAPTf4ftPKrqqfec4SvOIlvRZUdEX2TFpWR356YG/w== +jest-regex-util@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.1.0.tgz#efaf75914267741838e01de24da07b2192d16d87" + integrity sha512-9lShaDmDpqwg+xAd73zHydKrBbbrIi08Kk9YryBEBybQFg/lBWR/2BDjjiSE7KIppM9C5+c03XiDaZ+m4Pgs1w== -jest-resolve-dependencies@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-25.2.4.tgz#2d904400387d74a366dff54badb40a2b3210e733" - integrity sha512-qhUnK4PfNHzNdca7Ub1mbAqE0j5WNyMTwxBZZJjQlUrdqsiYho/QGK65FuBkZuSoYtKIIqriR9TpGrPEc3P5Gg== +jest-resolve-dependencies@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-25.1.0.tgz#8a1789ec64eb6aaa77fd579a1066a783437e70d2" + integrity sha512-Cu/Je38GSsccNy4I2vL12ZnBlD170x2Oh1devzuM9TLH5rrnLW1x51lN8kpZLYTvzx9j+77Y5pqBaTqfdzVzrw== dependencies: - "@jest/types" "^25.2.3" - jest-regex-util "^25.2.1" - jest-snapshot "^25.2.4" + "@jest/types" "^25.1.0" + jest-regex-util "^25.1.0" + jest-snapshot "^25.1.0" -jest-resolve@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.2.3.tgz#ababeaf2bb948cb6d2dea8453759116da0fb7842" - integrity sha512-1vZMsvM/DBH258PnpUNSXIgtzpYz+vCVCj9+fcy4akZl4oKbD+9hZSlfe9RIDpU0Fc28ozHQrmwX3EqFRRIHGg== +jest-resolve@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.1.0.tgz#23d8b6a4892362baf2662877c66aa241fa2eaea3" + integrity sha512-XkBQaU1SRCHj2Evz2Lu4Czs+uIgJXWypfO57L7JYccmAXv4slXA6hzNblmcRmf7P3cQ1mE7fL3ABV6jAwk4foQ== dependencies: - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" browser-resolve "^1.11.3" chalk "^3.0.0" jest-pnp-resolver "^1.2.1" - realpath-native "^2.0.0" - resolve "^1.15.1" - -jest-runner@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-25.2.4.tgz#d0daf7c56b4a83b6b675863d5cdcd502c960f9a1" - integrity sha512-5xaIfqqxck9Wg2CV4b9KmJtf/sWO7zWQx7O+34GCLGPzoPcVmB3mZtdrQI1/jS3Reqjru9ycLjgLHSf6XoxRqA== - dependencies: - "@jest/console" "^25.2.3" - "@jest/environment" "^25.2.4" - "@jest/test-result" "^25.2.4" - "@jest/types" "^25.2.3" + realpath-native "^1.1.0" + +jest-runner@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-25.1.0.tgz#fef433a4d42c89ab0a6b6b268e4a4fbe6b26e812" + integrity sha512-su3O5fy0ehwgt+e8Wy7A8CaxxAOCMzL4gUBftSs0Ip32S0epxyZPDov9Znvkl1nhVOJNf4UwAsnqfc3plfQH9w== + dependencies: + "@jest/console" "^25.1.0" + "@jest/environment" "^25.1.0" + "@jest/test-result" "^25.1.0" + "@jest/types" "^25.1.0" chalk "^3.0.0" exit "^0.1.2" graceful-fs "^4.2.3" - jest-config "^25.2.4" - jest-docblock "^25.2.3" - jest-haste-map "^25.2.3" - jest-jasmine2 "^25.2.4" - jest-leak-detector "^25.2.3" - jest-message-util "^25.2.4" - jest-resolve "^25.2.3" - jest-runtime "^25.2.4" - jest-util "^25.2.3" - jest-worker "^25.2.1" + jest-config "^25.1.0" + jest-docblock "^25.1.0" + jest-haste-map "^25.1.0" + jest-jasmine2 "^25.1.0" + jest-leak-detector "^25.1.0" + jest-message-util "^25.1.0" + jest-resolve "^25.1.0" + jest-runtime "^25.1.0" + jest-util "^25.1.0" + jest-worker "^25.1.0" source-map-support "^0.5.6" throat "^5.0.0" -jest-runtime@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-25.2.4.tgz#c66a421e115944426b377a7fd331f6c0902cfa56" - integrity sha512-6ehOUizgIghN+aV5YSrDzTZ+zJ9omgEjJbTHj3Jqes5D52XHfhzT7cSfdREwkNjRytrR7mNwZ7pRauoyNLyJ8Q== - dependencies: - "@jest/console" "^25.2.3" - "@jest/environment" "^25.2.4" - "@jest/source-map" "^25.2.1" - "@jest/test-result" "^25.2.4" - "@jest/transform" "^25.2.4" - "@jest/types" "^25.2.3" +jest-runtime@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-25.1.0.tgz#02683218f2f95aad0f2ec1c9cdb28c1dc0ec0314" + integrity sha512-mpPYYEdbExKBIBB16ryF6FLZTc1Rbk9Nx0ryIpIMiDDkOeGa0jQOKVI/QeGvVGlunKKm62ywcioeFVzIbK03bA== + dependencies: + "@jest/console" "^25.1.0" + "@jest/environment" "^25.1.0" + "@jest/source-map" "^25.1.0" + "@jest/test-result" "^25.1.0" + "@jest/transform" "^25.1.0" + "@jest/types" "^25.1.0" "@types/yargs" "^15.0.0" chalk "^3.0.0" collect-v8-coverage "^1.0.0" exit "^0.1.2" glob "^7.1.3" graceful-fs "^4.2.3" - jest-config "^25.2.4" - jest-haste-map "^25.2.3" - jest-message-util "^25.2.4" - jest-mock "^25.2.3" - jest-regex-util "^25.2.1" - jest-resolve "^25.2.3" - jest-snapshot "^25.2.4" - jest-util "^25.2.3" - jest-validate "^25.2.3" - realpath-native "^2.0.0" + jest-config "^25.1.0" + jest-haste-map "^25.1.0" + jest-message-util "^25.1.0" + jest-mock "^25.1.0" + jest-regex-util "^25.1.0" + jest-resolve "^25.1.0" + jest-snapshot "^25.1.0" + jest-util "^25.1.0" + jest-validate "^25.1.0" + realpath-native "^1.1.0" slash "^3.0.0" strip-bom "^4.0.0" - yargs "^15.3.1" + yargs "^15.0.0" -jest-serializer@^25.2.1: - version "25.2.1" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.2.1.tgz#51727a5fc04256f461abe0fa024a022ba165877a" - integrity sha512-fibDi7M5ffx6c/P66IkvR4FKkjG5ldePAK1WlbNoaU4GZmIAkS9Le/frAwRUFEX0KdnisSPWf+b1RC5jU7EYJQ== +jest-serializer@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.1.0.tgz#73096ba90e07d19dec4a0c1dd89c355e2f129e5d" + integrity sha512-20Wkq5j7o84kssBwvyuJ7Xhn7hdPeTXndnwIblKDR2/sy1SUm6rWWiG9kSCgJPIfkDScJCIsTtOKdlzfIHOfKA== -jest-snapshot@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.2.4.tgz#08d4517579c864df4280bcc948ceea34327a4ded" - integrity sha512-nIwpW7FZCq5p0AE3Oyqyb6jL0ENJixXzJ5/CD/XRuOqp3gS5OM3O/k+NnTrniCXxPFV4ry6s9HNfiPQBi0wcoA== +jest-snapshot@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.1.0.tgz#d5880bd4b31faea100454608e15f8d77b9d221d9" + integrity sha512-xZ73dFYN8b/+X2hKLXz4VpBZGIAn7muD/DAg+pXtDzDGw3iIV10jM7WiHqhCcpDZfGiKEj7/2HXAEPtHTj0P2A== dependencies: "@babel/types" "^7.0.0" - "@jest/types" "^25.2.3" - "@types/prettier" "^1.19.0" + "@jest/types" "^25.1.0" chalk "^3.0.0" - expect "^25.2.4" - jest-diff "^25.2.3" - jest-get-type "^25.2.1" - jest-matcher-utils "^25.2.3" - jest-message-util "^25.2.4" - jest-resolve "^25.2.3" - make-dir "^3.0.0" + expect "^25.1.0" + jest-diff "^25.1.0" + jest-get-type "^25.1.0" + jest-matcher-utils "^25.1.0" + jest-message-util "^25.1.0" + jest-resolve "^25.1.0" + mkdirp "^0.5.1" natural-compare "^1.4.0" - pretty-format "^25.2.3" - semver "^6.3.0" + pretty-format "^25.1.0" + semver "^7.1.1" -jest-util@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.2.3.tgz#0abf95a1d6b96f2de5a3ecd61b36c40a182dc256" - integrity sha512-7tWiMICVSo9lNoObFtqLt9Ezt5exdFlWs5fLe1G4XLY2lEbZc814cw9t4YHScqBkWMfzth8ASHKlYBxiX2rdCw== +jest-util@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.1.0.tgz#7bc56f7b2abd534910e9fa252692f50624c897d9" + integrity sha512-7did6pLQ++87Qsj26Fs/TIwZMUFBXQ+4XXSodRNy3luch2DnRXsSnmpVtxxQ0Yd6WTipGpbhh2IFP1mq6/fQGw== dependencies: - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" chalk "^3.0.0" is-ci "^2.0.0" - make-dir "^3.0.0" + mkdirp "^0.5.1" -jest-validate@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-25.2.3.tgz#ecb0f093cf8ae71d15075fb48439b6f78f1fcb5a" - integrity sha512-GObn91jzU0B0Bv4cusAwjP6vnWy78hJUM8MOSz7keRfnac/ZhQWIsUjvk01IfeXNTemCwgR57EtdjQMzFZGREg== +jest-validate@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-25.1.0.tgz#1469fa19f627bb0a9a98e289f3e9ab6a668c732a" + integrity sha512-kGbZq1f02/zVO2+t1KQGSVoCTERc5XeObLwITqC6BTRH3Adv7NZdYqCpKIZLUgpLXf2yISzQ465qOZpul8abXA== dependencies: - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" camelcase "^5.3.1" chalk "^3.0.0" - jest-get-type "^25.2.1" + jest-get-type "^25.1.0" leven "^3.1.0" - pretty-format "^25.2.3" + pretty-format "^25.1.0" -jest-watcher@^25.2.4: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-25.2.4.tgz#dda85b914d470fa4145164a8f70bda4f208bafb6" - integrity sha512-p7g7s3zqcy69slVzQYcphyzkB2FBmJwMbv6k6KjI5mqd6KnUnQPfQVKuVj2l+34EeuxnbXqnrjtUFmxhcL87rg== +jest-watcher@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-25.1.0.tgz#97cb4a937f676f64c9fad2d07b824c56808e9806" + integrity sha512-Q9eZ7pyaIr6xfU24OeTg4z1fUqBF/4MP6J801lyQfg7CsnZ/TCzAPvCfckKdL5dlBBEKBeHV0AdyjFZ5eWj4ig== dependencies: - "@jest/test-result" "^25.2.4" - "@jest/types" "^25.2.3" + "@jest/test-result" "^25.1.0" + "@jest/types" "^25.1.0" ansi-escapes "^4.2.1" chalk "^3.0.0" - jest-util "^25.2.3" + jest-util "^25.1.0" string-length "^3.1.0" -jest-worker@^25.1.0, jest-worker@^25.2.1: - version "25.2.1" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.2.1.tgz#209617015c768652646aa33a7828cc2ab472a18a" - integrity sha512-IHnpekk8H/hCUbBlfeaPZzU6v75bqwJp3n4dUrQuQOAgOneI4tx3jV2o8pvlXnDfcRsfkFIUD//HWXpCmR+evQ== +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@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.1.0.tgz#75d038bad6fdf58eba0d2ec1835856c497e3907a" + integrity sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg== dependencies: merge-stream "^2.0.0" supports-color "^7.0.0" jest@^25.1.0: - version "25.2.4" - resolved "https://registry.yarnpkg.com/jest/-/jest-25.2.4.tgz#d10941948a2b57eb7accc2e7ae78af4a0e11b40a" - integrity sha512-Lu4LXxf4+durzN/IFilcAoQSisOwgHIXgl9vffopePpSSwFqfj1Pj4y+k3nL8oTbnvjxgDIsEcepy6he4bWqnQ== + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-25.1.0.tgz#b85ef1ddba2fdb00d295deebbd13567106d35be9" + integrity sha512-FV6jEruneBhokkt9MQk0WUFoNTwnF76CLXtwNMfsc0um0TlB/LG2yxUd0KqaFjEJ9laQmVWQWS0sG/t2GsuI0w== dependencies: - "@jest/core" "^25.2.4" + "@jest/core" "^25.1.0" import-local "^3.0.2" - jest-cli "^25.2.4" - -jquery@>=1.7, jquery@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2" - integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw== + jest-cli "^25.1.0" js-beautify@^1.8.8: version "1.10.3" @@ -10741,7 +10815,39 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= -jsdom@^15.2.1: +jsdom@^11.5.1: + version "11.12.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" + integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== + dependencies: + abab "^2.0.0" + acorn "^5.5.3" + acorn-globals "^4.1.0" + array-equal "^1.0.0" + cssom ">= 0.3.2 < 0.4.0" + cssstyle "^1.0.0" + data-urls "^1.0.0" + domexception "^1.0.1" + escodegen "^1.9.1" + html-encoding-sniffer "^1.0.2" + left-pad "^1.3.0" + nwsapi "^2.0.7" + parse5 "4.0.0" + pn "^1.1.0" + request "^2.87.0" + request-promise-native "^1.0.5" + sax "^1.2.4" + symbol-tree "^3.2.2" + tough-cookie "^2.3.4" + w3c-hr-time "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.3" + whatwg-mimetype "^2.1.0" + whatwg-url "^6.4.1" + ws "^5.2.0" + xml-name-validator "^3.0.0" + +jsdom@^15.1.1: version "15.2.1" resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5" integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g== @@ -10808,7 +10914,7 @@ json-stringify-pretty-compact@~2.0.0: resolved "https://registry.yarnpkg.com/json-stringify-pretty-compact/-/json-stringify-pretty-compact-2.0.0.tgz#e77c419f52ff00c45a31f07f4c820c2433143885" integrity sha512-WRitRfs6BGq4q8gTgOy4ek7iPFXjbra0H3PmDLKm2xnZ+Gh1HUhiKGgCZkSPNULlP7mvfu6FV/mOLhCarspADQ== -json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: +json-stringify-safe@5.0.x, json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= @@ -10818,12 +10924,12 @@ json3@^3.3.2: resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA== -json5@2.x, json5@^2.1.1, json5@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.2.tgz#43ef1f0af9835dd624751a6b7fa48874fb2d608e" - integrity sha512-MoUOQ4WdiN3yxhm7NEVJSJrieAo5hNSLQ5sj05OTRHPL9HOBy8u4Bu88jsC1jvqAdN+E1bJmsUcZH+1HQxliqQ== +json5@2.x, json5@^2.1.0, json5@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6" + integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ== dependencies: - minimist "^1.2.5" + minimist "^1.2.0" json5@^1.0.1: version "1.0.1" @@ -10870,9 +10976,9 @@ jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3: object.assign "^4.1.0" just-extend@^4.0.2: - version "4.1.0" - resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.1.0.tgz#7278a4027d889601640ee0ce0e5a00b992467da4" - integrity sha512-ApcjaOdVTJ7y4r08xI5wIqpvwS48Q0PBG4DJROcEkH1f8MdAiNFyFxz3xoL0LWAVwjrwPYZdVHHxhRHcx/uGLA== + version "4.0.2" + resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.0.2.tgz#f3f47f7dfca0f989c55410a7ebc8854b07108afc" + integrity sha512-FrLwOgm+iXrPV+5zDU6Jqu4gCRXbWEQg2O3SKONsWE4w7AXFRkryS53bpWdaL9cNol+AmR3AEYz6kn+o0fCPnw== kind-of@^2.0.1: version "2.0.1" @@ -10938,6 +11044,13 @@ lazy-universal-dotenv@^3.0.1: dotenv "^8.0.0" dotenv-expand "^5.1.0" +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= + dependencies: + invert-kv "^1.0.0" + lcid@^3.0.0: version "3.1.1" resolved "https://registry.yarnpkg.com/lcid/-/lcid-3.1.1.tgz#9030ec479a058fc36b5e8243ebaac8b6ac582fd0" @@ -10945,6 +11058,11 @@ lcid@^3.0.0: dependencies: invert-kv "^3.0.0" +left-pad@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" + integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== + lerna@^3.15.0: version "3.20.2" resolved "https://registry.yarnpkg.com/lerna/-/lerna-3.20.2.tgz#abf84e73055fe84ee21b46e64baf37b496c24864" @@ -10974,10 +11092,10 @@ leven@^3.1.0: resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== -levenary@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" - integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== +levenary@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.0.tgz#fc146fe75f32dc483a0a2c64aef720f602cd6210" + integrity sha512-VHcwhO0UTpUW7rLPN2/OiWJdgA1e9BqEDALhrgCe/F+uUJnep6CoUsTzMeP8Rh0NGr9uKquXxqe7lwLZo509nQ== dependencies: leven "^3.1.0" @@ -10995,9 +11113,9 @@ lines-and-columns@^1.1.6: integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= lint-staged@^10.0.3: - version "10.1.1" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.1.1.tgz#1c8569b66d684e6e3553cd760c03053f41fca152" - integrity sha512-wAeu/ePaBAOfwM2+cVbgPWDtn17B0Sxiv0NvNEqDAIvB8Yhvl60vafKFiK4grcYn87K1iK+a0zVoETvKbdT9/Q== + version "10.0.5" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.0.5.tgz#871a968a078533dd47bad69599c318b8cc47d758" + integrity sha512-Y6V53LnwGxxUD0CCPTCGDlQx2l3RkW0gebgc5XBxKWEf1r0K1b1imedA1owQF7c3+lC9fp7AjWMrRiBsHSCmNQ== dependencies: chalk "^3.0.0" commander "^4.0.1" @@ -11104,7 +11222,7 @@ loader-runner@^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: +loader-utils@1.2.3, loader-utils@^1.1.0, 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== @@ -11113,7 +11231,7 @@ loader-utils@1.2.3: emojis-list "^2.0.0" json5 "^1.0.1" -loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: +loader-utils@^1.0.2: version "1.4.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== @@ -11155,6 +11273,11 @@ lodash._reinterpolate@^3.0.0: resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= + lodash.clonedeep@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" @@ -11165,6 +11288,11 @@ lodash.debounce@^4.0.8: resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= +lodash.defaultsdeep@^4.6.1: + version "4.6.1" + resolved "https://registry.yarnpkg.com/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.1.tgz#512e9bd721d272d94e3d3a63653fa17516741ca6" + integrity sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA== + lodash.escape@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98" @@ -11190,6 +11318,11 @@ lodash.ismatch@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc= +lodash.kebabcase@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" + integrity sha1-hImxyw0p/4gZXM7KRI/21swpXDY= + lodash.map@^4.5.1: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" @@ -11205,6 +11338,11 @@ lodash.set@^4.3.2: resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= +lodash.snakecase@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" + integrity sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40= + lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" @@ -11235,6 +11373,11 @@ lodash.uniq@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= +lodash.upperfirst@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" + integrity sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984= + lodash.zip@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020" @@ -11250,7 +11393,7 @@ lodash@4.17.14: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba" integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw== -lodash@^4.0.1, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4, lodash@^4.2.1: +lodash@^4.0.1, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.2.1: version "4.17.15" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== @@ -11297,7 +11440,7 @@ longest@^1.0.1: resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc= -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4.0: +loose-envify@^1.0.0, loose-envify@^1.1.0, 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== @@ -11324,13 +11467,6 @@ lower-case@^1.1.0, lower-case@^1.1.1, lower-case@^1.1.2: resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= -lower-case@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz#39eeb36e396115cc05e29422eaea9e692c9408c7" - integrity sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ== - dependencies: - tslib "^1.10.0" - lowercase-keys@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" @@ -11379,17 +11515,17 @@ make-dir@^2.0.0, make-dir@^2.1.0: pify "^4.0.1" semver "^5.6.0" -make-dir@^3.0.0, make-dir@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.2.tgz#04a1acbf22221e1d6ef43559f43e05a90dbb4392" - integrity sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w== +make-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.0.tgz#1b5f39f6b9270ed33f9f054c5c0f84304989f801" + integrity sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw== dependencies: semver "^6.0.0" make-error@1.x: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + version "1.3.5" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" + integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g== make-fetch-happen@^5.0.0: version "5.0.2" @@ -11415,6 +11551,11 @@ makeerror@1.0.x: dependencies: tmpl "1.0.x" +mamacro@^0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" + integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA== + map-age-cleaner@^0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" @@ -11455,36 +11596,22 @@ map-visit@^1.0.0: object-visit "^1.0.0" markdown-to-jsx@^6.9.1, markdown-to-jsx@^6.9.3: - version "6.11.0" - resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.11.0.tgz#a2e3f2bc781c3402d8bb0f8e0a12a186474623b0" - integrity sha512-RH7LCJQ4RFmPqVeZEesKaO1biRzB/k4utoofmTCp3Eiw6D7qfvK8fzZq/2bjEJAtVkfPrM5SMt5APGf2rnaKMg== + version "6.10.3" + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.10.3.tgz#7f0946684acd321125ff2de7fd258a9b9c7c40b7" + integrity sha512-PSoUyLnW/xoW6RsxZrquSSz5eGEOTwa15H5eqp3enmrp8esmgDJmhzd6zmQ9tgAA9TxJzx1Hmf3incYU/IamoQ== dependencies: prop-types "^15.6.2" unquote "^1.1.0" -marked@^0.3.12: - version "0.3.19" - resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" - integrity sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg== - -marksy@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/marksy/-/marksy-8.0.0.tgz#b595f121fd47058df9dda1448f6ee156ab48810a" - integrity sha512-mmHcKZojCQAGuKTuu3153viXdCuxUmsSxomFaSOBTkOlfWFOZBmDhmJkOp0CsPMNRQ7m6oN2wflvAHLpBNZVPw== - dependencies: - "@babel/standalone" "^7.4.5" - he "^1.2.0" - marked "^0.3.12" - material-colors@^1.2.1: version "1.2.6" resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.6.tgz#6d1958871126992ceecc72f4bcc4d8f010865f46" integrity sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg== math-expression-evaluator@^1.2.14: - version "1.2.22" - resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.22.tgz#c14dcb3d8b4d150e5dcea9c68c8dad80309b0d5e" - integrity sha512-L0j0tFVZBQQLeEjmWOvDLoRciIY8gQGWahvkztXUal8jH8R5Rlqo9GCvgqvXcy9LQhEWdQCVvzqAbxgYNt4blQ== + version "1.2.17" + resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" + integrity sha1-3oGf282E3M2PrlnGrreWFbnSZqw= md5.js@^1.3.4: version "1.3.5" @@ -11500,11 +11627,6 @@ mdn-data@2.0.4: resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== -mdn-data@2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978" - integrity sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA== - media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" @@ -11677,7 +11799,7 @@ micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: snapdragon "^0.8.1" to-regex "^3.0.2" -micromatch@^4.0.0, micromatch@^4.0.2: +micromatch@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== @@ -11737,10 +11859,10 @@ min-indent@^1.0.0: resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.0.tgz#cfc45c37e9ec0d8f0a0ec3dd4ef7f7c3abe39256" integrity sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY= -mini-css-extract-plugin@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.7.0.tgz#5ba8290fbb4179a43dd27cca444ba150bee743a0" - integrity sha512-RQIw6+7utTYn8DBGsf/LpRgZCJMpZt+kuawJ/fju0KiOL6nAaTBNmCJwS7HtwSCXfS47gCkmtBFS7HdsquhdxQ== +mini-css-extract-plugin@^0.8.0: + version "0.8.2" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.2.tgz#a875e169beb27c88af77dd962771c9eedc3da161" + integrity sha512-a3Y4of27Wz+mqK3qrcd3VhYz6cU0iW5x3Sgvqzbj+XmlrSizmvu8QQMl5oMYJjgHOC4iyt+w7l4umP+dQeW3bw== dependencies: loader-utils "^1.1.0" normalize-url "1.9.1" @@ -11772,16 +11894,16 @@ minimist-options@^3.0.1: arrify "^1.0.1" is-plain-obj "^1.1.0" -minimist@1.2.0: +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= + +minimist@1.2.0, minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= -minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, 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== - minimist@~0.0.1: version "0.0.10" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" @@ -11874,18 +11996,23 @@ mkdirp@*: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.3.tgz#4cf2e30ad45959dddea53ad97d518b6c8205e1ea" integrity sha512-6uCP4Qc0sWsgMLy1EOqqS/3rjDHOEnsStVr/4vtAIK2Y5i2kA7lFFejYrpIyiN9w0pYf4ckeCYT9f1r1P9KX5g== -mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: - version "0.5.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.4.tgz#fd01504a6797ec5c9be81ff43d204961ed64a512" - integrity sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw== +mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= dependencies: - minimist "^1.2.5" + minimist "0.0.8" modify-values@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== +moment@^2.18.1: + version "2.24.0" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" + integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== + moo@^0.5.0: version "0.5.1" resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4" @@ -11969,9 +12096,9 @@ nan@^2.12.1: integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== nanoid@^2.1.0: - version "2.1.11" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-2.1.11.tgz#ec24b8a758d591561531b4176a01e3ab4f0f0280" - integrity sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA== + version "2.1.10" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-2.1.10.tgz#66fb5ac664ee2d3017f451b9f0d26cfec3c034b5" + integrity sha512-ZPUHBAwrQ+BSwVV2Xh6hBOEStTzAf8LgohOY0kk22lDiDdI32582KjVPYCqgqj7834hTunGzwZOB4me9T6ZcnA== nanomatch@^1.2.9: version "1.2.13" @@ -12016,11 +12143,6 @@ neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== -nested-object-assign@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/nested-object-assign/-/nested-object-assign-1.0.3.tgz#5aca69390d9affe5a612152b5f0843ae399ac597" - integrity sha512-kgq1CuvLyUcbcIuTiCA93cQ2IJFSlRwXcN+hLcb2qLJwC2qrePHGZZa7IipyWqaWF6tQjdax2pQnVxdq19Zzwg== - nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" @@ -12045,13 +12167,10 @@ no-case@^2.2.0, no-case@^2.3.2: dependencies: lower-case "^1.1.1" -no-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.3.tgz#c21b434c1ffe48b39087e86cfb4d2582e9df18f8" - integrity sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw== - dependencies: - lower-case "^2.0.1" - tslib "^1.10.0" +node-ask@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/node-ask/-/node-ask-1.0.1.tgz#caaa1076cc58e0364267a0903e3eadfac158396b" + integrity sha1-yqoQdsxY4DZCZ6CQPj6t+sFYOWs= node-dir@^0.1.10: version "0.1.17" @@ -12061,9 +12180,9 @@ node-dir@^0.1.10: minimatch "^3.0.2" node-fetch-npm@^2.0.2: - version "2.0.4" - resolved "https://registry.yarnpkg.com/node-fetch-npm/-/node-fetch-npm-2.0.4.tgz#6507d0e17a9ec0be3bec516958a497cec54bf5a4" - integrity sha512-iOuIQDWDyjhv9qSDrj9aq/klt6F9z1p2otB3AV7v3zBDcL/x+OfGsvGQZZCcMZbUf4Ujw1xGNQkjvGnVT22cKg== + version "2.0.2" + resolved "https://registry.yarnpkg.com/node-fetch-npm/-/node-fetch-npm-2.0.2.tgz#7258c9046182dca345b4208eda918daf33697ff7" + integrity sha512-nJIxm1QmAj4v3nfCvEeCrYSoVwXyxLnaPBK5W1W5DGEJwjlKuC2VEUycGw5oxk+4zZahRrB84PUJJgEmhFTDFw== dependencies: encoding "^0.1.11" json-parse-better-errors "^1.0.0" @@ -12083,9 +12202,9 @@ node-fetch@^2.2.0, node-fetch@^2.3.0, node-fetch@^2.5.0, node-fetch@^2.6.0: integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== node-gyp@^5.0.2: - version "5.1.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-5.1.0.tgz#8e31260a7af4a2e2f994b0673d4e0b3866156332" - integrity sha512-OUTryc5bt/P8zVgNUmC6xdXiDJxLMAW8cF5tLQOT9E5sOQj+UeQxnnPy74K3CLCa/SOjjBlbuzDLR8ANwA+wmw== + version "5.0.7" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-5.0.7.tgz#dd4225e735e840cf2870e4037c2ed9c28a31719e" + integrity sha512-K8aByl8OJD51V0VbUURTKsmdswkQQusIvlvmTyhHlIT1hBvaSxzdxpSle857XuXa7uc02UEZx9OR5aDxSWS5Qw== dependencies: env-paths "^2.2.0" glob "^7.1.4" @@ -12133,6 +12252,15 @@ node-libs-browser@^2.2.1: util "^0.11.0" vm-browserify "^1.0.1" +node-loggly-bulk@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/node-loggly-bulk/-/node-loggly-bulk-2.2.4.tgz#bdd8638d97c43ecf1e1831ca98b250968fa6dee9" + integrity sha512-DfhtsDfkSBU6Dp1zvK+H1MgHRcA2yb4z07ctyA6uo+bNwKtv1exhohN910zcWNkdSYq1TImCq+O+3bOTuYHvmQ== + dependencies: + json-stringify-safe "5.0.x" + moment "^2.18.1" + request ">=2.76.0 <3.0.0" + 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" @@ -12149,15 +12277,17 @@ node-notifier@^6.0.0: shellwords "^0.1.1" which "^1.3.1" -node-releases@^1.1.29, node-releases@^1.1.53: - version "1.1.53" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4" - integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ== +node-releases@^1.1.29, node-releases@^1.1.46: + version "1.1.47" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.47.tgz#c59ef739a1fd7ecbd9f0b7cf5b7871e8a8b591e4" + integrity sha512-k4xjVPx5FpwBUj0Gw7uvFOTF4Ep8Hok1I6qjwL3pLfwe7Y0REQSAqOwwv9TWBCUtMHxcXfY4PgRLRozcChvTcA== + dependencies: + semver "^6.3.0" nopt@^4.0.1, nopt@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" - integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= dependencies: abbrev "1" osenv "^0.1.4" @@ -12212,9 +12342,9 @@ npm-bundled@^1.0.1: npm-normalize-package-bin "^1.0.1" npm-lifecycle@^3.1.2: - version "3.1.5" - resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-3.1.5.tgz#9882d3642b8c82c815782a12e6a1bfeed0026309" - integrity sha512-lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g== + version "3.1.4" + resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-3.1.4.tgz#de6975c7d8df65f5150db110b57cce498b0b604c" + integrity sha512-tgs1PaucZwkxECGKhC/stbEgFyc3TGh2TJcg2CDr6jbvQRdteHNhmMeljRzpe4wgFAXQADoy1cSqqi7mtiAa5A== dependencies: byline "^5.0.0" graceful-fs "^4.1.15" @@ -12299,7 +12429,7 @@ number-is-nan@^1.0.0: resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= -nwsapi@^2.2.0: +nwsapi@^2.0.7, 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== @@ -12446,22 +12576,26 @@ open@^6.3.0: is-wsl "^1.1.0" open@^7.0.0: - version "7.0.3" - resolved "https://registry.yarnpkg.com/open/-/open-7.0.3.tgz#db551a1af9c7ab4c7af664139930826138531c48" - integrity sha512-sP2ru2v0P290WFfv49Ap8MF6PkzGNnGlAwHweB4WR4mr5d2d0woiCluUeJ218w7/+PmoBy9JmYgD5A4mLcWOFA== + version "7.0.0" + resolved "https://registry.yarnpkg.com/open/-/open-7.0.0.tgz#7e52999b14eb73f90f0f0807fe93897c4ae73ec9" + integrity sha512-K6EKzYqnwQzk+/dzJAQSBORub3xlBTxMz+ntpZpH/LyCa1o6KjXhuN+2npAaI9jaSmU3R1Q8NWf4KUWcyytGsQ== dependencies: - is-docker "^2.0.0" - is-wsl "^2.1.1" + is-wsl "^2.1.0" opencollective-postinstall@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89" integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== -optimal@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/optimal/-/optimal-4.2.0.tgz#a97d9a12cb543988f2e54b88416b77d9a811ed69" - integrity sha512-jKFdiBkhJCVMh6oXsGNVFv/huPeFTEdlBtSuwDBYYClFn6lwV0fdRwRhWtpazM1ZMuV+bNNRFMth9SMWvUk3uQ== +openurl@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/openurl/-/openurl-1.1.1.tgz#3875b4b0ef7a52c156f0db41d4609dbb0f94b387" + integrity sha1-OHW0sO96UsFW8NtB1GCduw+Us4c= + +optimal@^3.3.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/optimal/-/optimal-3.4.0.tgz#1dd55b7ae0ad2d7222858f0bc9e96b07ccee7c58" + integrity sha512-unexr3ZDSQeNP/5rMcoaVtjDgEnC+T8LGpLmfC6prt6OQx83j7ijE+E9v5x2WFlwjeph91/Vsaryn9AMQOIjnA== optimist@^0.6.1: version "0.6.1" @@ -12500,6 +12634,13 @@ os-homedir@^1.0.0: resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= +os-locale@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= + dependencies: + lcid "^1.0.0" + os-locale@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-4.0.0.tgz#06e4fb102f38f33e9e904f41af3c34a5aa3b2b7b" @@ -12562,7 +12703,7 @@ p-limit@^1.1.0: dependencies: p-try "^1.0.0" -p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.2.2: +p-limit@^2.0.0, p-limit@^2.2.0: version "2.2.2" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e" integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ== @@ -12649,9 +12790,9 @@ pad-component@0.0.1: integrity sha1-rR8izhvw/cDW3dkIrxfzUaQEuKw= 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== + version "1.0.10" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" + integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== parallel-transform@^1.1.0: version "1.2.0" @@ -12662,20 +12803,12 @@ parallel-transform@^1.1.0: inherits "^2.0.3" readable-stream "^2.1.5" -param-case@^2.1.0: +param-case@^2.1.0, param-case@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" - integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc= - dependencies: - no-case "^2.2.0" - -param-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.3.tgz#4be41f8399eff621c56eebb829a5e451d9801238" - integrity sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA== + integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc= dependencies: - dot-case "^3.0.3" - tslib "^1.10.0" + no-case "^2.2.0" parent-module@^1.0.0: version "1.0.1" @@ -12766,6 +12899,11 @@ parse-url@^5.0.0: parse-path "^4.0.0" protocols "^1.4.0" +parse5@4.0.0, parse5@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" + integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== + parse5@5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" @@ -12778,11 +12916,6 @@ parse5@^3.0.1: dependencies: "@types/node" "*" -parse5@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" - integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== - parseurl@~1.3.2, parseurl@~1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" @@ -12796,14 +12929,6 @@ pascal-case@^2.0.0: camel-case "^3.0.0" upper-case-first "^1.1.0" -pascal-case@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.1.tgz#5ac1975133ed619281e88920973d2cd1f279de5f" - integrity sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA== - dependencies: - no-case "^3.0.3" - tslib "^1.10.0" - pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" @@ -12924,10 +13049,10 @@ performance-now@^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.0.5, picomatch@^2.2.1: - version "2.2.2" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" - integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== +picomatch@^2.0.4, picomatch@^2.0.5: + version "2.2.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.1.tgz#21bac888b6ed8601f831ce7816e335bc779f0a4a" + integrity sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA== pify@^2.0.0, pify@^2.3.0: version "2.3.0" @@ -12956,6 +13081,19 @@ pinkie@^2.0.0: resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= +pino@4.10.2: + version "4.10.2" + resolved "https://registry.yarnpkg.com/pino/-/pino-4.10.2.tgz#77e93cdfa1cdb58f688cbb0abaebe67eb2f315f4" + integrity sha512-hNNDgOju2UvK4iKqXR3ZwEutoOujBRN9jfQgty/X4B3q1QOqpWqvmVn+GT/a20o8Jw5Wd7VkGJAdgFQg55a+mw== + dependencies: + chalk "^2.3.0" + fast-json-parse "^1.0.0" + fast-safe-stringify "^1.2.1" + flatstr "^1.0.4" + pump "^1.0.3" + quick-format-unescaped "^1.1.1" + split2 "^2.2.0" + pirates@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" @@ -12984,7 +13122,7 @@ pkg-dir@^4.1.0, pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" -pkg-up@2.0.0, pkg-up@^2.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= @@ -13016,11 +13154,11 @@ pnp-webpack-plugin@1.5.0: ts-pnp "^1.1.2" polished@^3.3.1: - version "3.5.1" - resolved "https://registry.yarnpkg.com/polished/-/polished-3.5.1.tgz#657b6faf4c2308f3e0b1951196803a5e5d67b122" - integrity sha512-GVbvskpBiDV5TknurGL6OyFfLHsCknxbU8w5iMppT8rW0tLEoQHrIRfrPNPqGXNj3HGhkjRvhmg59Fy7HSnCAw== + version "3.4.2" + resolved "https://registry.yarnpkg.com/polished/-/polished-3.4.2.tgz#b4780dad81d64df55615fbfc77acb52fd17d88cd" + integrity sha512-9Rch6iMZckABr6EFCLPZsxodeBpXMo9H4fRlfR/9VjMEyy5xpo1/WgXlJGgSjPyVhEZNycbW7UmYMNyWS5MI0g== dependencies: - "@babel/runtime" "^7.8.7" + "@babel/runtime" "^7.6.3" popper.js@^1.14.4, popper.js@^1.14.7: version "1.16.1" @@ -13033,11 +13171,11 @@ posix-character-classes@^0.1.0: integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= postcss-flexbugs-fixes@^4.1.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.0.tgz#662b3dcb6354638b9213a55eed8913bcdc8d004a" - integrity sha512-QRE0n3hpkxxS/OGvzOa+PDuy4mh/Jg4o9ui22/ko5iGYOG3M5dfJabjnAZjTdh2G9F85c7Hv8hWcEDEKW/xceQ== + version "4.1.0" + resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz#e094a9df1783e2200b7b19f875dcad3b3aff8b20" + integrity sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA== dependencies: - postcss "^7.0.26" + postcss "^7.0.0" postcss-load-config@^2.0.0: version "2.1.0" @@ -13075,9 +13213,9 @@ postcss-modules-local-by-default@^3.0.2: postcss-value-parser "^4.0.0" postcss-modules-scope@^2.1.1: - 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== + version "2.1.1" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz#33d4fc946602eb5e9355c4165d68a10727689dba" + integrity sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ== dependencies: postcss "^7.0.6" postcss-selector-parser "^6.0.0" @@ -13099,15 +13237,15 @@ postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: indexes-of "^1.0.1" uniq "^1.0.1" -postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d" - integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg== +postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz#482282c09a42706d1fc9a069b73f44ec08391dc9" + integrity sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ== -postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.23, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6: - version "7.0.27" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9" - integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ== +postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.23, postcss@^7.0.26, postcss@^7.0.5, postcss@^7.0.6: + version "7.0.26" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.26.tgz#5ed615cfcab35ba9bbb82414a4fa88ea10429587" + integrity sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA== dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -13130,10 +13268,10 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.2.tgz#1ba8f3eb92231e769b7fcd7cb73ae1b6b74ade08" - integrity sha512-5xJQIPT8BraI7ZnaDwSbu5zLrB6vvi8hVV58yHQ+QK64qrY40dULy0HSRlQ2/2IdzeBpjhDkqdcFBnFeDEMVdg== +prettier@^1.19.1: + version "1.19.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== pretty-bytes@^5.2.0: version "5.3.0" @@ -13148,12 +13286,12 @@ pretty-error@^2.1.1: renderkid "^2.0.1" utila "~0.4" -pretty-format@^25.1.0, pretty-format@^25.2.3: - version "25.2.3" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.2.3.tgz#ba6e9603a0d80fa2e470b1fed55de1f9bfd81421" - integrity sha512-IP4+5UOAVGoyqC/DiomOeHBUKN6q00gfyT2qpAsRH64tgOKB2yF7FHJXC18OCiU0/YFierACup/zdCOWw0F/0w== +pretty-format@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.1.0.tgz#ed869bdaec1356fc5ae45de045e2c8ec7b07b0c8" + integrity sha512-46zLRSGLd02Rp+Lhad9zzuNZ+swunitn8zIpfD2B4OPCRLXbM87RJT2aBLBWYOznNUML/2l/ReMyWNC80PJBUQ== dependencies: - "@jest/types" "^25.2.3" + "@jest/types" "^25.1.0" ansi-regex "^5.0.0" ansi-styles "^4.0.0" react-is "^16.12.0" @@ -13191,7 +13329,7 @@ prismjs@~1.17.0: optionalDependencies: clipboard "^2.0.0" -private@^0.1.8, private@~0.1.5: +private@^0.1.6, private@~0.1.5: version "0.1.8" resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== @@ -13206,7 +13344,15 @@ process@^0.11.10: resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= -progress@^2.0.0: +progress-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-2.0.0.tgz#fac63a0b3d11deacbb0969abcc93b214bce19ed5" + integrity sha1-+sY6Cz0R3qy7CWmrzJOyFLzhntU= + dependencies: + speedometer "~1.0.0" + through2 "~2.0.3" + +progress@^2.0.0, progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== @@ -13252,12 +13398,12 @@ promise@^7.1.1: asap "~2.0.3" prompts@^2.0.1: - version "2.3.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" - integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA== + version "2.3.0" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.0.tgz#a444e968fa4cc7e86689a74050685ac8006c4cc4" + integrity sha512-NfbbPPg/74fT7wk2XYQ7hAIp9zJyZp5Fu19iRbORqqy1BhtrkZ0fPafBU+7bmn8ie69DpT0R6QpJIN2oisYjJg== dependencies: kleur "^3.0.3" - sisteransi "^1.0.4" + sisteransi "^1.0.3" promzard@^0.3.0: version "0.3.0" @@ -13309,12 +13455,12 @@ protoduck@^5.0.1: genfun "^5.0.0" proxy-addr@~2.0.5: - version "2.0.6" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" - integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== + version "2.0.5" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" + integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ== dependencies: forwarded "~0.1.2" - ipaddr.js "1.9.1" + ipaddr.js "1.9.0" prr@~1.0.1: version "1.0.1" @@ -13326,10 +13472,10 @@ pseudomap@^1.0.2: resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= -psl@^1.1.28: - version "1.8.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" - integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== +psl@^1.1.24, psl@^1.1.28: + version "1.7.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz#f1c4c47a8ef97167dea5d6bbf4816d736e884a3c" + integrity sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ== public-encrypt@^4.0.0: version "4.0.3" @@ -13343,6 +13489,14 @@ public-encrypt@^4.0.0: randombytes "^2.0.1" safe-buffer "^5.1.2" +pump@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" + integrity sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + pump@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" @@ -13373,7 +13527,7 @@ punycode@1.3.2: resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= -punycode@^1.2.4: +punycode@^1.2.4, punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= @@ -13394,9 +13548,9 @@ qs@6.7.0: integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== qs@^6.6.0: - version "6.9.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.3.tgz#bfadcd296c2d549f1dffa560619132c977f5008e" - integrity sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw== + version "6.9.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.1.tgz#20082c65cb78223635ab1a9eaca8875a29bf8ec9" + integrity sha512-Cxm7/SS/y/Z3MHWSxXb8lIFqgqBowP5JMlTUFyJN88y0SGQhVmZnqFK/PeuMX9LzUyWsqqhNxIyg0jlzq946yA== qs@~6.5.2: version "6.5.2" @@ -13426,6 +13580,13 @@ querystringify@^2.1.1: resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== +quick-format-unescaped@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz#0ca581de3174becef25ac3c2e8956342381db698" + integrity sha1-DKWB3jF0vs7yWsPC6JVjQjgdtpg= + dependencies: + fast-safe-stringify "^1.0.8" + quick-lru@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" @@ -13499,15 +13660,6 @@ raw-loader@^3.1.0: loader-utils "^1.1.0" schema-utils "^2.0.1" -react-addons-create-fragment@^15.6.2: - version "15.6.2" - resolved "https://registry.yarnpkg.com/react-addons-create-fragment/-/react-addons-create-fragment-15.6.2.tgz#a394de7c2c7becd6b5475ba1b97ac472ce7c74f8" - integrity sha1-o5TefCx77Na1R1uhuXrEcs58dPg= - dependencies: - fbjs "^0.8.4" - loose-envify "^1.3.1" - object-assign "^4.1.0" - react-clientside-effect@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/react-clientside-effect/-/react-clientside-effect-1.2.2.tgz#6212fb0e07b204e714581dd51992603d1accc837" @@ -13559,28 +13711,28 @@ react-dev-utils@^9.0.0: text-table "0.2.0" react-docgen@^5.0.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-5.3.0.tgz#9aabde5e69f1993c8ba839fd9a86696504654589" - integrity sha512-hUrv69k6nxazOuOmdGeOpC/ldiKy7Qj/UFpxaQi0eDMrUFUTIPGtY5HJu7BggSmiyAMfREaESbtBL9UzdQ+hyg== + version "5.1.0" + resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-5.1.0.tgz#8e69f1d2e9153c535c20162ea1b85878b059b474" + integrity sha512-buAVMVqDEtvC7+VRDRlA9udS9cO9jFfb7yxRvKNYR9MXS0MJwaIe7OjSEydNzH9oH7LND3whDE+koFDUBtF3zA== dependencies: "@babel/core" "^7.7.5" "@babel/runtime" "^7.7.6" ast-types "^0.13.2" + async "^2.1.4" commander "^2.19.0" doctrine "^3.0.0" - neo-async "^2.6.1" node-dir "^0.1.10" strip-indent "^3.0.0" react-dom@^16.8.3, react-dom@^16.9.0: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" - integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag== + version "16.12.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.12.0.tgz#0da4b714b8d13c2038c9396b54a92baea633fe11" + integrity sha512-LMxFfAGrcS3kETtQaCkTKjMiifahaMySFDn71fZUNpPHZQEzmk/GiAeIT8JSOrHB23fnuCOMruL2a8NYlw+8Gw== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" - scheduler "^0.19.1" + scheduler "^0.18.0" react-draggable@^4.0.3: version "4.2.0" @@ -13590,7 +13742,7 @@ react-draggable@^4.0.3: classnames "^2.2.5" prop-types "^15.6.0" -react-element-to-jsx-string@^14.0.2, react-element-to-jsx-string@^14.3.1: +react-element-to-jsx-string@^14.3.1: version "14.3.1" resolved "https://registry.yarnpkg.com/react-element-to-jsx-string/-/react-element-to-jsx-string-14.3.1.tgz#a08fa6e46eb76061aca7eabc2e70f433583cb203" integrity sha512-LRdQWRB+xcVPOL4PU4RYuTg6dUJ/FNmaQ8ls6w38YbzkbV6Yr5tFNESroub9GiSghtnMq8dQg2LcNN5aMIDzVg== @@ -13604,9 +13756,9 @@ react-error-boundary@^1.2.5: integrity sha512-5CPSeLJA2igJNppAgFRwnTL9aK3ojenk65enNzhVyoxYNbHpIJXnChUO7+4vPhkncRA9wvQMXq6Azp2XeXd+iQ== react-error-overlay@^6.0.3: - version "6.0.7" - resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.7.tgz#1dcfb459ab671d53f660a991513cb2f0a0553108" - integrity sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA== + version "6.0.4" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.4.tgz#0d165d6d27488e660bc08e57bdabaad741366f7a" + integrity sha512-ueZzLmHltszTshDMwyfELDq8zOA803wQ1ZuzCccXa1m57k1PxSHfflPD5W9YIiTXLs0JTLzoj6o1LuM5N6zzNA== react-fast-compare@^2.0.4: version "2.0.4" @@ -13651,18 +13803,19 @@ react-input-autosize@^2.2.2: prop-types "^15.5.8" react-inspector@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-4.0.1.tgz#0f888f78ff7daccbc7be5d452b20c96dc6d5fbb8" - integrity sha512-xSiM6CE79JBqSj8Fzd9dWBHv57tLTH7OM57GP3VrE5crzVF3D5Khce9w1Xcw75OAbvrA0Mi2vBneR1OajKmXFg== + version "4.0.0" + resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-4.0.0.tgz#ad73200ca18452aff333df2e2791be4544c422a9" + integrity sha512-heh4THBeJg0HLYO/3VBAOaFPkdEHoTZq9VFgP4rOzGw/jyqdVd5spfXSl3LNB1fwrwaWef75Q1hCuwlY4GaKjQ== dependencies: - "@babel/runtime" "^7.6.3" + babel-runtime "^6.26.0" is-dom "^1.0.9" prop-types "^15.6.1" + storybook-chromatic "^2.2.2" -react-is@^16.12.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.3, react-is@^16.8.6, react-is@^16.9.0: - 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.12.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.6, react-is@^16.9.0: + version "16.12.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c" + integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q== react-lifecycles-compat@^3.0.4: version "3.0.4" @@ -13677,14 +13830,14 @@ react-loadable@^5.5.0: prop-types "^15.5.0" react-popper-tooltip@^2.8.3: - version "2.11.0" - resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-2.11.0.tgz#1a871008853e072ba31fbe2bc5fd0316fa0a289a" - integrity sha512-Xxe08mAW990/NKYTEcZmdqchmB70hxQEPT7q7BMLGy3IkeNJI6ZaLODnzadTx1b7FGka8CLXyV/3g8EPaFJaig== + version "2.10.1" + resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-2.10.1.tgz#e10875f31916297c694d64a677d6f8fa0a48b4d1" + integrity sha512-cib8bKiyYcrIlHo9zXx81G0XvARfL8Jt+xum709MFCgQa3HTqTi4au3iJ9tm7vi7WU7ngnqbpWkMinBOtwo+IQ== dependencies: - "@babel/runtime" "^7.9.2" - react-popper "^1.3.7" + "@babel/runtime" "^7.7.4" + react-popper "^1.3.6" -react-popper@^1.3.7: +react-popper@^1.3.6: version "1.3.7" resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.7.tgz#f6a3471362ef1f0d10a4963673789de1baca2324" integrity sha512-nmqYTx7QVjCm3WUZLeuOomna138R1luC4EqkW3hxJUrAe+3eNz3oFCLYdnPwILfn0mX1Ew2c3wctrjlUMYYUww== @@ -13698,9 +13851,9 @@ react-popper@^1.3.7: warning "^4.0.2" react-select@^3.0.8: - version "3.1.0" - resolved "https://registry.yarnpkg.com/react-select/-/react-select-3.1.0.tgz#ab098720b2e9fe275047c993f0d0caf5ded17c27" - integrity sha512-wBFVblBH1iuCBprtpyGtd1dGMadsG36W5/t2Aj8OE6WbByDg5jIFyT7X5gT+l0qmT5TqWhxX+VsKJvCEl2uL9g== + version "3.0.8" + resolved "https://registry.yarnpkg.com/react-select/-/react-select-3.0.8.tgz#06ff764e29db843bcec439ef13e196865242e0c1" + integrity sha512-v9LpOhckLlRmXN5A6/mGGEft4FMrfaBFTGAnuPHcUgVId7Je42kTq9y0Z+Ye5z8/j0XDT3zUqza8gaRaI1PZIg== dependencies: "@babel/runtime" "^7.4.4" "@emotion/cache" "^10.0.9" @@ -13709,7 +13862,7 @@ react-select@^3.0.8: memoize-one "^5.0.0" prop-types "^15.6.0" react-input-autosize "^2.2.2" - react-transition-group "^4.3.0" + react-transition-group "^2.2.1" react-sizeme@^2.6.7: version "2.6.12" @@ -13733,14 +13886,14 @@ react-syntax-highlighter@^11.0.2: refractor "^2.4.1" react-test-renderer@^16.0.0-0, react-test-renderer@^16.9.0: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.13.1.tgz#de25ea358d9012606de51e012d9742e7f0deabc1" - integrity sha512-Sn2VRyOK2YJJldOqoh8Tn/lWQ+ZiKhyZTPtaO0Q6yNj+QDbmRkVFap6pZPy3YQk8DScRDfyqm/KxKYP9gCMRiQ== + version "16.12.0" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.12.0.tgz#11417ffda579306d4e841a794d32140f3da1b43f" + integrity sha512-Vj/teSqt2oayaWxkbhQ6gKis+t5JrknXfPVo+aIJ8QwYAqMPH77uptOdrlphyxl8eQI/rtkOYg86i/UWkpFu0w== dependencies: object-assign "^4.1.1" prop-types "^15.6.2" react-is "^16.8.6" - scheduler "^0.19.1" + scheduler "^0.18.0" react-textarea-autosize@^7.1.0: version "7.1.2" @@ -13750,20 +13903,20 @@ react-textarea-autosize@^7.1.0: "@babel/runtime" "^7.1.2" prop-types "^15.6.0" -react-transition-group@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.3.0.tgz#fea832e386cf8796c58b61874a3319704f5ce683" - integrity sha512-1qRV1ZuVSdxPlPf4O8t7inxUGpdyO5zG9IoNfJxSO0ImU2A1YWkEQvFPuIPZmMLkg5hYs7vv5mMOyfgSkvAwvw== +react-transition-group@^2.2.1: + version "2.9.0" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d" + integrity sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg== dependencies: - "@babel/runtime" "^7.5.5" - dom-helpers "^5.0.1" + dom-helpers "^3.4.0" loose-envify "^1.4.0" prop-types "^15.6.2" + react-lifecycles-compat "^3.0.4" react@^16.6.0, react@^16.8.3, react@^16.9.0: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" - integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== + version "16.12.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.12.0.tgz#0c0a9c6a142429e3614834d5a778e18aa78a0b83" + integrity sha512-fglqy3k5E+81pA8s+7K0/T3DBCF0ZDOher1elBFzF7O6arXJgzyu/FW+COxFvAWXJoJN9KIZbT2LXlukwphYTA== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -13911,9 +14064,9 @@ read@1, read@~1.0.1: util-deprecate "~1.0.1" "readable-stream@2 || 3", readable-stream@^3.0.2, readable-stream@^3.1.1: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + version "3.5.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.5.0.tgz#465d70e6d1087f6162d079cd0b5db7fbebfd1606" + integrity sha512-gSz026xs2LfxBPudDuI41V1lka8cxg64E66SGe78zJlsUofOg/yqwezdIcdfwik6B4h8LFmWPA9ef9X3FiNFLA== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" @@ -13938,10 +14091,12 @@ readdirp@^2.2.1: micromatch "^3.1.10" readable-stream "^2.0.2" -realpath-native@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866" - integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q== +realpath-native@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" + integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== + dependencies: + util.promisify "^1.0.0" recast@^0.14.7: version "0.14.7" @@ -14013,10 +14168,10 @@ refractor@^2.4.1: parse-entities "^1.1.2" prismjs "~1.17.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== +regenerate-unicode-properties@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" + integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== dependencies: regenerate "^1.4.0" @@ -14035,18 +14190,17 @@ regenerator-runtime@^0.11.0: resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== -regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: - version "0.13.5" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" - integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== +regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3: + version "0.13.3" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" + integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw== -regenerator-transform@^0.14.2: - version "0.14.4" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" - integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== +regenerator-transform@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb" + integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ== dependencies: - "@babel/runtime" "^7.8.4" - private "^0.1.8" + private "^0.1.6" regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" @@ -14056,10 +14210,10 @@ regex-not@^1.0.0, regex-not@^1.0.2: extend-shallow "^3.0.2" safe-regex "^1.1.0" -regexp-tree@^0.1.20, regexp-tree@~0.1.1: - version "0.1.21" - resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.21.tgz#55e2246b7f7d36f1b461490942fa780299c400d7" - integrity sha512-kUUXjX4AnqnR8KRTCrayAo9PzYMRKmVoGgaz2tBuz0MF3g1ZbGebmtW0yFHfFK9CmBjQKeYIgoL22pFLBJY7sw== +regexp-tree@^0.1.17, regexp-tree@~0.1.1: + version "0.1.17" + resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.17.tgz#66d914a6ca21f95dd7660ed70a7dad47aeb2246a" + integrity sha512-UnOJjFS/EPZmfISmYx+0PcDtPzyFKTe+cZTS5sM5hifnRUDRxoB1j4DAmGwqzxjwBGlwOkGfb2cDGHtjuEwqoA== regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.3.0: version "1.3.0" @@ -14079,27 +14233,27 @@ regexpp@^3.0.0: resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.0.0.tgz#dd63982ee3300e67b41c1956f850aa680d9d330e" integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g== -regexpu-core@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" - integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== +regexpu-core@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6" + integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg== dependencies: regenerate "^1.4.0" - regenerate-unicode-properties "^8.2.0" - regjsgen "^0.5.1" - regjsparser "^0.6.4" + regenerate-unicode-properties "^8.1.0" + regjsgen "^0.5.0" + regjsparser "^0.6.0" unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.2.0" + unicode-match-property-value-ecmascript "^1.1.0" -regjsgen@^0.5.1: +regjsgen@^0.5.0: version "0.5.1" resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== -regjsparser@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" - integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== +regjsparser@^0.6.0: + version "0.6.2" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.2.tgz#fd62c753991467d9d1ffe0a9f67f27a529024b96" + integrity sha512-E9ghzUtoLwDekPT0DYCp+c4h+bvuUpe6rRHCTYn6eGoqj1LgKXxT6I0Il4WbjhQkOghzi/V+y03bPKvbllL93Q== dependencies: jsesc "~0.5.0" @@ -14158,7 +14312,7 @@ request-promise-core@1.1.3: dependencies: lodash "^4.17.15" -request-promise-native@^1.0.7: +request-promise-native@^1.0.5, request-promise-native@^1.0.7: version "1.0.8" resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36" integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ== @@ -14167,10 +14321,10 @@ request-promise-native@^1.0.7: stealthy-require "^1.1.1" tough-cookie "^2.3.3" -request@^2.88.0: - version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== +"request@>=2.76.0 <3.0.0", request@^2.87.0, request@^2.88.0: + version "2.88.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== dependencies: aws-sign2 "~0.7.0" aws4 "^1.8.0" @@ -14179,7 +14333,7 @@ request@^2.88.0: extend "~3.0.2" forever-agent "~0.6.1" form-data "~2.3.2" - har-validator "~5.1.3" + har-validator "~5.1.0" http-signature "~1.2.0" is-typedarray "~1.0.0" isstream "~0.1.2" @@ -14189,7 +14343,7 @@ request@^2.88.0: performance-now "^2.1.0" qs "~6.5.2" safe-buffer "^5.1.2" - tough-cookie "~2.5.0" + tough-cookie "~2.4.3" tunnel-agent "^0.6.0" uuid "^3.3.2" @@ -14198,6 +14352,11 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= + 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" @@ -14294,10 +14453,10 @@ resolve@1.1.7: resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= -resolve@1.x, resolve@^1.1.10, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.3.2, resolve@^1.8.1: - version "1.15.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8" - integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w== +resolve@1.x, resolve@^1.1.10, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.3.2, resolve@^1.8.1: + version "1.15.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.0.tgz#1b7ca96073ebb52e741ffd799f6b39ea462c67f5" + integrity sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw== dependencies: path-parse "^1.0.6" @@ -14322,12 +14481,17 @@ ret@~0.1.10: 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= + retry@^0.10.0: version "0.10.1" resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" integrity sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q= -reusify@^1.0.4: +reusify@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== @@ -14351,10 +14515,10 @@ rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3, rimra 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== +rimraf@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.0.tgz#614176d4b3010b75e5c390eb0ee96f6dc0cebb9b" + integrity sha512-NDGVxTsjqfunkds7CqsOiEnxln4Bo7Nddl3XhS4pXg5OzwkLqJ971ZVAAnB+DDLnF76N+VnDEiBHaVV8I06SUg== dependencies: glob "^7.1.3" @@ -14379,10 +14543,10 @@ rsvp@^4.8.4: resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== -run-async@^2.0.0, run-async@^2.2.0, run-async@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8" - integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg== +run-async@^2.0.0, run-async@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= dependencies: is-promise "^2.1.0" @@ -14459,7 +14623,7 @@ sane@^4.0.3: minimist "^1.1.1" walker "~1.0.5" -sax@~1.2.4: +sax@^1.2.4, 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== @@ -14471,10 +14635,10 @@ saxes@^3.1.9: dependencies: xmlchars "^2.1.1" -scheduler@^0.19.1: - version "0.19.1" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" - integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== +scheduler@^0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.18.0.tgz#5901ad6659bc1d8f3fdaf36eb7a67b0d6746b1c4" + integrity sha512-agTSHR1Nbfi6ulI0kYNK0203joW2Y5W4po4l+v03tOoiJKpTBbxpNhWDvqc/4IcOw+KLmSiQLTasZ4cab2/UWQ== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -14488,12 +14652,12 @@ schema-utils@^1.0.0: ajv-errors "^1.0.0" ajv-keywords "^3.1.0" -schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.4, schema-utils@^2.6.5: - version "2.6.5" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.5.tgz#c758f0a7e624263073d396e29cd40aa101152d8a" - integrity sha512-5KXuwKziQrTVHh8j/Uxz+QUbxkaLW9X/86NBlx/gnKgtsZA2GIVMUn17qWhRFwF8jdYb3Dig5hRO/W5mZqy6SQ== +schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1, schema-utils@^2.6.4: + version "2.6.4" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.4.tgz#a27efbf6e4e78689d91872ee3ccfa57d7bdd0f53" + integrity sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ== dependencies: - ajv "^6.12.0" + ajv "^6.10.2" ajv-keywords "^3.4.1" scoped-regex@^1.0.0: @@ -14536,10 +14700,10 @@ semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.1.2: - version "7.1.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.3.tgz#e4345ce73071c53f336445cfc19efb1c311df2a6" - integrity sha512-ekM0zfiA9SCBlsKa2X1hxyxiI4L3B6EbVJkkdgQXnSEEaHlGdvyodMruTiulSRWMMB4NeIuYNMC9rTKTz97GxA== +semver@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.1.tgz#29104598a197d6cbe4733eeecbe968f7b43a9667" + integrity sha512-WfuG+fl6eh3eZ2qAf6goB7nhiCd7NPXhmyFxigB/TOkQyeLP8w8GsVehvtGNtnNmyboz4TgeK40B1Kbql/8c5A== send@0.17.1: version "0.17.1" @@ -14734,9 +14898,9 @@ sigmund@^1.0.1: 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== + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= simplebar-react@^1.0.0-alpha.6: version "1.2.3" @@ -14771,10 +14935,10 @@ sinon@^8.0.4: nise "^3.0.1" supports-color "^7.1.0" -sisteransi@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== +sisteransi@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.4.tgz#386713f1ef688c7c0304dc4c0632898941cad2e3" + integrity sha512-/ekMoM4NJ59ivGSfKapeG+FWtrmWvA1p6FBZwXrqojw90vJu8lBmrTxCMuBCydKtkaUe2zt4PlxeTKpjwMbyig== slash@^1.0.0: version "1.0.0" @@ -14978,6 +15142,11 @@ spdx-license-ids@^3.0.0: resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== +speedometer@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-1.0.0.tgz#cd671cb06752c22bca3370e2f334440be4fc62e2" + integrity sha1-zWccsGdSwivKM3Di8zREC+T8YuI= + 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" @@ -14985,7 +15154,7 @@ split-string@^3.0.1, split-string@^3.0.2: dependencies: extend-shallow "^3.0.0" -split2@^2.0.0: +split2@^2.0.0, split2@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw== @@ -15063,20 +15232,49 @@ stealthy-require@^1.1.1: integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= store2@^2.7.1: - version "2.11.0" - resolved "https://registry.yarnpkg.com/store2/-/store2-2.11.0.tgz#307636a239014ef4d8f1c8b47afe903509484fc8" - integrity sha512-WeIZ5+c/KzBSutSqOjUCAkk1qTLVBcYUuvrhNx8ndjLZKdZRfP6Vv7AOxlynuL6tVU/6zt6e2CTHwWI5KE+fKg== + version "2.10.0" + resolved "https://registry.yarnpkg.com/store2/-/store2-2.10.0.tgz#46b82bb91878daf1b0d56dec2f1d41e54d5103cf" + integrity sha512-tWEpK0snS2RPUq1i3R6OahfJNjWCQYNxq0+by1amCSuw0mXtymJpzmZIeYpA1UAa+7B0grCpNYIbDcd7AgTbFg== storybook-addon-jsx@^7.1.0: - version "7.1.15" - resolved "https://registry.yarnpkg.com/storybook-addon-jsx/-/storybook-addon-jsx-7.1.15.tgz#e43b8be4c67cef61273ec647f7820437e562d375" - integrity sha512-Z2FWukjv8k4f5oP/c/0lbgWJItL3PNQ3SE3KLZ6rvhYeuAPCoMJppEYSs/FYeMZP5Z3LgygtD1v0R5kqwbb2Aw== + version "7.1.14" + resolved "https://registry.yarnpkg.com/storybook-addon-jsx/-/storybook-addon-jsx-7.1.14.tgz#ec1a3512741b069381e280e00a03397b774a4f69" + integrity sha512-ei+nhJz5KB55W247MSxrszc+D3R8xhkZ796bYSikct0L6ug1kVy4KS/cltWYE0pycbpNRGMGALFNgfYfVsF3jg== dependencies: "@storybook/components" "^5.2.5" copy-to-clipboard "^3.0.8" js-beautify "^1.8.8" react-element-to-jsx-string "^14.3.1" +storybook-chromatic@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/storybook-chromatic/-/storybook-chromatic-2.2.2.tgz#eade5178f334d6dd173dbe980c902ae90e727cb0" + integrity sha512-n79eX0MQEHzDCnXqgOjvDOQ1xfBOTyQHy1RNxEMQvZolfAle8YVS0NnRpcW0xh/Ye621Iote3dwFI3uQmlcqPw== + dependencies: + "@babel/runtime" "^7.3.1" + "@chromaui/localtunnel" "1.10.1" + async-retry "^1.1.4" + commander "^2.9.0" + debug "^3.0.1" + denodeify "^1.2.1" + env-ci "^2.1.0" + fake-tag "^1.0.0" + jsdom "^11.5.1" + jsonfile "^4.0.0" + minimatch "^3.0.4" + node-ask "^1.0.1" + node-fetch "^2.6.0" + node-loggly-bulk "^2.2.4" + param-case "^2.1.1" + pino "4.10.2" + progress "^2.0.3" + progress-stream "^2.0.0" + semver "^6.2.0" + strip-color "^0.1.0" + tmp "^0.1.0" + tree-kill "^1.1.0" + uuid "^3.3.2" + stream-browserify@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" @@ -15132,7 +15330,7 @@ string-template@~0.2.1: resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" integrity sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0= -string-width@^1.0.1: +string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= @@ -15167,7 +15365,7 @@ string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.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.2: +"string.prototype.matchall@^4.0.0 || ^3.0.1": version "4.0.2" resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e" integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg== @@ -15204,39 +15402,21 @@ string.prototype.trim@^1.2.1: es-abstract "^1.17.0-next.1" function-bind "^1.1.1" -string.prototype.trimend@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.0.tgz#ee497fd29768646d84be2c9b819e292439614373" - integrity sha512-EEJnGqa/xNfIg05SxiPSqRS7S9qwDhYts1TSLR1BQfYUfPe1stofgGKvwERK9+9yf+PpfBMlpBaCHucXGPQfUA== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimleft@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" - integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== + version "2.1.1" + resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74" + integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag== dependencies: define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimstart "^1.0.0" + function-bind "^1.1.1" string.prototype.trimright@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" - integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimend "^1.0.0" - -string.prototype.trimstart@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.0.tgz#afe596a7ce9de905496919406c9734845f01a2f2" - integrity sha512-iCP8g01NFYiiBOnwG1Xc3WZLyoo+RuBymwIlWncShXDDJYWN6DbnM3odslBJdgCdRlq94B5s63NWAZlcn2CS4w== + version "2.1.1" + resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9" + integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g== dependencies: define-properties "^1.1.3" - es-abstract "^1.17.5" + function-bind "^1.1.1" string_decoder@^1.0.0, string_decoder@^1.1.1: version "1.3.0" @@ -15314,6 +15494,11 @@ strip-bom@^4.0.0: resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== +strip-color@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/strip-color/-/strip-color-0.1.0.tgz#106f65d3d3e6a2d9401cac0eb0ce8b8a702b4f7b" + integrity sha1-EG9l09PmotlAHKwOsM6LinArT3s= + strip-eof@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" @@ -15408,18 +15593,18 @@ supports-color@^7.0.0, supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-hyperlinks@^2.0.0, supports-hyperlinks@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47" - integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA== +supports-hyperlinks@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.0.0.tgz#b1b94a159e9df00b0a554b2d5f0e0a89690334b0" + integrity sha512-bFhn0MQ8qefLyJ3K7PpHiPUTuTVPWw6RXfaMeV6xgJLXtBbszyboz1bvGTVv4R0YpQm2DqlXXn0fFHhxUHVE5w== dependencies: has-flag "^4.0.0" supports-color "^7.0.0" svg-parser@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" - integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== + version "2.0.3" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.3.tgz#a38f2e4e5442986f7ecb554c11f1411cfcf8c2b9" + integrity sha512-fnCWiifNhK8i2Z7b9R5tbNahpxrRdAaQbnoxKlT2KrSCj9Kq/yBSgulCRgBJRhy1dPnSY5slg5ehPUnzpEcHlg== svgo@^1.2.2: version "1.3.2" @@ -15546,10 +15731,10 @@ tempfile@^3.0.0: temp-dir "^2.0.0" uuid "^3.3.2" -term-size@^2.1.0, term-size@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz#1f16adedfe9bdc18800e1776821734086fcc6753" - integrity sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw== +term-size@^2.1.0, term-size@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.1.1.tgz#f81ec25854af91a480d2f9d0c77ffcb26594ed1a" + integrity sha512-UqvQSch04R+69g4RDhrslmGvGL3ucDRX/U+snYW0Mab4uCAyKSndUksaoqlJ81QKSpRnIsuOYQCbC2ZWx2896A== terminal-link@^2.0.0: version "2.1.1" @@ -15575,24 +15760,23 @@ terser-webpack-plugin@^1.4.3: worker-farm "^1.7.0" terser-webpack-plugin@^2.1.2: - version "2.3.5" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.5.tgz#5ad971acce5c517440ba873ea4f09687de2f4a81" - integrity sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w== + version "2.3.2" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.2.tgz#6d3d1b0590c8f729bfbaeb7fb2528b8b62db4c74" + integrity sha512-SmvB/6gtEPv+CJ88MH5zDOsZdKXPS/Uzv2//e90+wM1IHFUhsguPKEILgzqrM1nQ4acRXN/SV4Obr55SXC+0oA== dependencies: cacache "^13.0.1" find-cache-dir "^3.2.0" - jest-worker "^25.1.0" - p-limit "^2.2.2" - schema-utils "^2.6.4" + jest-worker "^24.9.0" + schema-utils "^2.6.1" serialize-javascript "^2.1.2" source-map "^0.6.1" terser "^4.4.3" webpack-sources "^1.4.3" -terser@^4.1.2, terser@^4.4.3, terser@^4.6.3: - version "4.6.10" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.10.tgz#90f5bd069ff456ddbc9503b18e52f9c493d3b7c2" - integrity sha512-qbF/3UOo11Hggsbsqm2hPa6+L4w7bkr+09FNseEe8xrcVD3APGLFqE+Oz1ZKAxjYnFsj80rLOfgAtJ0LNJjtTA== +terser@^4.1.2, terser@^4.3.9, terser@^4.4.3: + version "4.6.3" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.3.tgz#e33aa42461ced5238d352d2df2a67f21921f8d87" + integrity sha512-Lw+ieAXmY69d09IIc/yqeBqXpEQIpDGZqT34ui1QWXIUpR2RjbqEkT8X7Lgex19hslSqcWM5iMN2kM11eMsESQ== dependencies: commander "^2.20.0" source-map "~0.6.1" @@ -15646,7 +15830,7 @@ throttle-debounce@^2.1.0: resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.1.0.tgz#257e648f0a56bd9e54fe0f132c4ab8611df4e1d5" integrity sha512-AOvyNahXQuU7NN+VVvOOX+uW6FPaWdAOdRP5HfwYxAfCzXTFKRMoIMk+n+po318+ktcChx+F1Dd91G3YHeMKyg== -through2@^2.0.0, through2@^2.0.2: +through2@^2.0.0, through2@^2.0.2, through2@~2.0.3: version "2.0.5" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== @@ -15703,6 +15887,13 @@ tmp@^0.0.33: dependencies: os-tmpdir "~1.0.2" +tmp@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.1.0.tgz#ee434a4e22543082e294ba6201dcc6eafefa2877" + integrity sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw== + dependencies: + rimraf "^2.6.3" + tmpl@1.0.x: version "1.0.4" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" @@ -15760,14 +15951,14 @@ toidentifier@1.0.0: resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== -topojson-client@^3.1.0: +topojson-client@^3.0.1: version "3.1.0" resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.1.0.tgz#22e8b1ed08a2b922feeb4af6f53b6ef09a467b99" integrity sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw== dependencies: commander "2" -tough-cookie@^2.3.3, tough-cookie@~2.5.0: +tough-cookie@^2.3.3, tough-cookie@^2.3.4: version "2.5.0" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== @@ -15784,6 +15975,14 @@ tough-cookie@^3.0.1: psl "^1.1.28" punycode "^2.1.1" +tough-cookie@~2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" + integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== + dependencies: + psl "^1.1.24" + punycode "^1.4.1" + tr46@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" @@ -15791,6 +15990,11 @@ tr46@^1.0.1: dependencies: punycode "^2.1.0" +tree-kill@^1.1.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" + integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== + trim-newlines@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" @@ -15814,9 +16018,9 @@ trim-repeated@^1.0.0: escape-string-regexp "^1.0.2" ts-dedent@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-1.1.1.tgz#68fad040d7dbd53a90f545b450702340e17d18f3" - integrity sha512-UGTRZu1evMw4uTPyYF66/KFd22XiU+jMaIuHrkIHQ2GivAXVlLV0v/vHrpOuTRf9BmpNHi/SO7Vd0rLu0y57jg== + version "1.1.0" + resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-1.1.0.tgz#67983940793183dc7c7f820acb66ba02cdc33c6e" + integrity sha512-CVCvDwMBWZKjDxpN3mU/Dx1v3k+sJgE8nrhXcC9vRopRfoa7vVzilNvHEAUi5jQnmFHpnxDx5jZdI1TpG8ny2g== ts-jest@^24.1.0: version "24.3.0" @@ -15834,28 +16038,12 @@ ts-jest@^24.1.0: semver "^5.5" yargs-parser "10.x" -ts-loader@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-6.2.2.tgz#dffa3879b01a1a1e0a4b85e2b8421dc0dfff1c58" - integrity sha512-HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ== - dependencies: - chalk "^2.3.0" - enhanced-resolve "^4.0.0" - loader-utils "^1.0.2" - micromatch "^4.0.0" - semver "^6.0.0" - ts-pnp@^1.1.2: - 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== - -tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: - version "1.11.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" - integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== + version "1.1.5" + resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.5.tgz#840e0739c89fce5f3abd9037bb091dbff16d9dec" + integrity sha512-ti7OGMOUOzo66wLF3liskw6YQIaSsBgc4GOAlWRnIEj8htCxJUxskanMUoJOD6MDCRAXo36goXJZch+nOS0VMA== -tslib@~1.10.0: +tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3, tslib@~1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== @@ -15896,11 +16084,6 @@ type-detect@4.0.8, type-detect@^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.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" - integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== - type-fest@^0.3.0: version "0.3.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" @@ -15941,10 +16124,10 @@ typedarray@^0.0.6: resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= -typescript@^3.8.3: - version "3.8.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061" - integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w== +typescript@^3.7.5: + version "3.7.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.5.tgz#0692e21f65fd4108b9330238aac11dd2e177a1ae" + integrity sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw== ua-parser-js@^0.7.18: version "0.7.21" @@ -15952,9 +16135,9 @@ ua-parser-js@^0.7.18: integrity sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ== uglify-js@^3.1.4: - version "3.8.1" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.8.1.tgz#43bb15ce6f545eaa0a64c49fd29375ea09fa0f93" - integrity sha512-W7KxyzeaQmZvUFbGj4+YFshhVrMBGSg2IbcYAjGWGvx8DHvJMclbTDMpffdxFUGPBHjIytk7KJUR/KUXstUGDw== + version "3.7.6" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.6.tgz#0783daa867d4bc962a37cc92f67f6e3238c47485" + integrity sha512-yYqjArOYSxvqeeiYH2VGjZOqq6SVmhxzaPjJC1W2F9e+bqvFL9QXQ2osQuKUFjM2hGjKG2YclQnRKWQSt/nOTQ== dependencies: commander "~2.20.3" source-map "~0.6.1" @@ -15987,15 +16170,15 @@ unicode-match-property-ecmascript@^1.0.4: 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-match-property-value-ecmascript@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" + integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== 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== + version "1.0.5" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" + integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== union-value@^1.0.0: version "1.0.1" @@ -16027,16 +16210,9 @@ unique-slug@^2.0.0: imurmurhash "^0.1.4" universal-user-agent@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-4.0.1.tgz#fd8d6cb773a679a709e967ef8288a31fcc03e557" - integrity sha512-LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg== - dependencies: - os-name "^3.1.0" - -universal-user-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-5.0.0.tgz#a3182aa758069bf0e79952570ca757de3579c1d9" - integrity sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q== + version "4.0.0" + resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-4.0.0.tgz#27da2ec87e32769619f68a14996465ea1cb9df16" + integrity sha512-eM8knLpev67iBDizr/YtqkJsF3GK8gzDc6st/WKzrTuPtcsOKW/0IdL4cnMBsU69pOx0otavLWBDGTwg+dB0aA== dependencies: os-name "^3.1.0" @@ -16172,7 +16348,7 @@ util.promisify@1.0.0: define-properties "^1.1.2" object.getownpropertydescriptors "^2.0.3" -util.promisify@~1.0.0: +util.promisify@^1.0.0, 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== @@ -16217,9 +16393,9 @@ v8-compile-cache@^2.0.3: integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== v8-to-istanbul@^4.0.1: - version "4.1.3" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.3.tgz#22fe35709a64955f49a08a7c7c959f6520ad6f20" - integrity sha512-sAjOC+Kki6aJVbUOXJbcR0MnbfjvBzwKZazEJymA2IX49uoOdEdk+4fBq5cXgYgiyKtAyrrJNtBZdOeDIF+Fng== + version "4.0.1" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.0.1.tgz#d6a2a3823b8ff49bdf2167ff2a45d82dff81d02f" + integrity sha512-x0yZvZAkjJwdD3fPiJzYP37aod0ati4LlmD2RmpKjqewjKAov/u/ytZ8ViIZb07cN4cePKzl9ijiUi7C1LQ8hQ== dependencies: "@types/istanbul-lib-coverage" "^2.0.1" convert-source-map "^1.6.0" @@ -16250,7 +16426,7 @@ vega-canvas@^1.2.1: resolved "https://registry.yarnpkg.com/vega-canvas/-/vega-canvas-1.2.1.tgz#ee0586e2a1f096f6a5d1710df61ef501562c2bd4" integrity sha512-k/S3EPeJ37D7fYDhv4sEg7fNWVpLheQY7flfLyAmJU7aSwCMgw8cZJi0CKHchJeculssfH+41NCqvRB1QtaJnw== -vega-crossfilter@~4.0.1: +vega-crossfilter@4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/vega-crossfilter/-/vega-crossfilter-4.0.1.tgz#9fab0dc5445e846d732c83ac2b5a72225bc6fdf1" integrity sha512-wLNS4JzKaOLj8EAzI/v8XBJjUWMRWYSu6EeQF4o9Opq/78u87Ol9Lc5I27UHsww5dNNH/tHubAV4QPIXnGOp5Q== @@ -16259,7 +16435,7 @@ vega-crossfilter@~4.0.1: vega-dataflow "^5.1.0" vega-util "^1.8.0" -vega-dataflow@^5.1.0, vega-dataflow@^5.1.1, vega-dataflow@^5.4.0, vega-dataflow@^5.4.1, vega-dataflow@^5.5.0, vega-dataflow@~5.5.0: +vega-dataflow@5.5.0, vega-dataflow@^5.1.0, vega-dataflow@^5.1.1, vega-dataflow@^5.4.0, vega-dataflow@^5.4.1, vega-dataflow@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/vega-dataflow/-/vega-dataflow-5.5.0.tgz#9a1ecd2eb0ff02aef53cdb87a7828eae528f8d82" integrity sha512-9eRe2qLpwvEegBoSaH3vdziSLMZSszY02wxVmvcFzHe57Rf/eYEr0YRuW4qc+gMmwURPYu9wtmeUTiK4XhDKXw== @@ -16267,32 +16443,32 @@ vega-dataflow@^5.1.0, vega-dataflow@^5.1.1, vega-dataflow@^5.4.0, vega-dataflow@ vega-loader "^4.0.0" vega-util "^1.11.0" -vega-encode@~4.5.3: - version "4.5.3" - resolved "https://registry.yarnpkg.com/vega-encode/-/vega-encode-4.5.3.tgz#a243cbe2af461313a8a2eef88400548b89cdf52c" - integrity sha512-N7EVoDVQOrloutGnnXZj0Pa9JReH2s7Tio/2KUiMb5eGeJQ7jRD2zyqZSG0ZxKODSlxoP3YLmbLVKHIqNJQ5Kg== +vega-encode@4.5.2: + version "4.5.2" + resolved "https://registry.yarnpkg.com/vega-encode/-/vega-encode-4.5.2.tgz#236dca241be0340a31354755913dc3919867726d" + integrity sha512-iL1njX++VE0SAMJuDqc0k9kmsU8AeyRRHv15MXh2+PXe2JmyiSWn6HcF3RzFUy5xmKlZOU5BiL8KrTgTrxh+WA== dependencies: d3-array "^2.4.0" - d3-format "^1.4.3" + d3-format "^1.4.2" d3-interpolate "^1.4.0" vega-dataflow "^5.5.0" vega-scale "^6.0.0" vega-time "^1.0.0" - vega-util "^1.13.1" + vega-util "^1.12.2" -vega-event-selector@^2.0.2, vega-event-selector@~2.0.2: +vega-event-selector@2.0.2, vega-event-selector@^2.0.2, vega-event-selector@~2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/vega-event-selector/-/vega-event-selector-2.0.2.tgz#bb64e1cfe047c6808878038319e18af6991759d9" integrity sha512-Uv72vBfM0lrlI2belKHFMZuVnW2uJl2ShqWPwGSXPVe6p+PzgqoPJYC8A/i5N8B54UA4UMDzlbBeo3x7q2W9Yg== -vega-expression@^2.6.1, vega-expression@^2.6.3, vega-expression@~2.6.3: +vega-expression@2.6.3, vega-expression@^2.6.1, vega-expression@^2.6.3, vega-expression@~2.6.3: version "2.6.3" resolved "https://registry.yarnpkg.com/vega-expression/-/vega-expression-2.6.3.tgz#11110922765cc495b8aebd8e05c4ec848d9f2b3b" integrity sha512-sME1+45BToTGsftb1Q6Ubs2iRYEoXkD2NRGnJuKS9YJ2ITzZwPHF/jy2kHW3iLpuNjj54meaO7HMQ/hUKrciUw== dependencies: vega-util "^1.11.0" -vega-force@~4.0.3: +vega-force@4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/vega-force/-/vega-force-4.0.3.tgz#33e0b03c9af60146f821007d9e7a7617fe9e8ac6" integrity sha512-4stItN4jD9H1CENaCz4jXRNS1Bi9cozMOUjX2824FeJENi2RZSiAZAaGbscgerZQ/jbNcOHD8PHpC2pWldEvGA== @@ -16301,7 +16477,7 @@ vega-force@~4.0.3: vega-dataflow "^5.4.0" vega-util "^1.11.0" -vega-functions@^5.5.1, vega-functions@~5.5.1: +vega-functions@5.5.1, vega-functions@^5.5.0, vega-functions@^5.5.1: version "5.5.1" resolved "https://registry.yarnpkg.com/vega-functions/-/vega-functions-5.5.1.tgz#849a7c9f19c77899c26969b6070c724cd7366131" integrity sha512-VTfEwf/ChSOGc4d4yUIgu2XoScky6NH06WN4vwVGY5PREhsyVPsQ+p2zqgD/N/a00EyWPHeOSHEhsPU28oIMtQ== @@ -16320,7 +16496,7 @@ vega-functions@^5.5.1, vega-functions@~5.5.1: vega-time "^1.0.0" vega-util "^1.12.1" -vega-geo@~4.3.0: +vega-geo@4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/vega-geo/-/vega-geo-4.3.0.tgz#3dd5d3606f18dc839c8a430338c6a390319bf477" integrity sha512-Rcz4z+TR4qy727pjBWSsbMAn8eM9bDZ5MXKqo5AWuFkoj/8ngv13vafHd1tvEMTA8L5BjAW3/eTqN4tyx9KSQg== @@ -16334,7 +16510,7 @@ vega-geo@~4.3.0: vega-statistics "^1.7.1" vega-util "^1.12.1" -vega-hierarchy@~4.0.3: +vega-hierarchy@4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/vega-hierarchy/-/vega-hierarchy-4.0.3.tgz#0d36bc29ad6f369fa844e3e2ce5faec983f8b047" integrity sha512-9wNe+KyKqZW1S4++jCC38HuAhZbqNhfY7gOvwiMLjsp65tMtRETrtvYfHkULClm3UokUIX54etAXREAGW7znbw== @@ -16362,30 +16538,30 @@ vega-lite@~4.1.0: vega-util "~1.12.2" yargs "~15.1.0" -vega-loader@^4.0.0, vega-loader@^4.2.0, vega-loader@~4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/vega-loader/-/vega-loader-4.2.1.tgz#556554e6e70f254dc68da15a391ba0d3ad6d1373" - integrity sha512-JfF/vwOWzj7MD2Je/5r0beqBApTsQ68e2H8uV1T9wZctMM7WV9+z3JWvQ95yUFiMqyjVYRpXUR25y/b7qPE03Q== +vega-loader@4.1.3, vega-loader@^4.0.0, vega-loader@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/vega-loader/-/vega-loader-4.1.3.tgz#8b80aa231406295bdc78725186ef863af05b9e6f" + integrity sha512-50aetjuct4WqU7LctwnZqF/NCyya9aZ1HDQZ9unFi++62vOQgRfbXLNL/dZavqwnWX3S9i0ltCznLyFMG4ck8g== dependencies: - d3-dsv "^1.2.0" - d3-time-format "^2.2.3" + d3-dsv "^1.1.1" + d3-time-format "^2.2.1" node-fetch "^2.6.0" - topojson-client "^3.1.0" - vega-util "^1.13.1" + topojson-client "^3.0.1" + vega-util "^1.11.0" -vega-parser@~5.13.1: - version "5.13.1" - resolved "https://registry.yarnpkg.com/vega-parser/-/vega-parser-5.13.1.tgz#37770fe599808988a4c31e36bb632976a0119786" - integrity sha512-xTtfpZTgJ/UMclcSor8adpK95G5hh1YSCZom94eUnFabfsoEHAfl5K3RJd5XVjInUISsGFOyAR5LqXNth4k7BA== +vega-parser@5.12.0: + version "5.12.0" + resolved "https://registry.yarnpkg.com/vega-parser/-/vega-parser-5.12.0.tgz#380fbc781649764583f5433f0be95f7f360c3f67" + integrity sha512-sIQcWp7aqafpfELEJr+gQDsz7TlLYaHkowKhp3O/pcOdIuvqeI3IYpP2+oNpXVGi8ikcq8cJLcCUMi9oP2Xtrw== dependencies: vega-dataflow "^5.5.0" vega-event-selector "^2.0.2" vega-expression "^2.6.3" - vega-functions "^5.5.1" + vega-functions "^5.5.0" vega-scale "^6.0.0" - vega-util "^1.13.1" + vega-util "^1.12.1" -vega-projection@^1.4.0, vega-projection@~1.4.0: +vega-projection@1.4.0, vega-projection@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/vega-projection/-/vega-projection-1.4.0.tgz#58c910b30306869132c4a26516164f8643fd1734" integrity sha512-Prb/E41PqZT5b+46rHv6BZLDsXMe+NFClHxJ9NbwW7mntz8aMGAHiYolVa/M2KuTLbsXVgDAPxk/aA9tbQ0SSg== @@ -16393,17 +16569,17 @@ vega-projection@^1.4.0, vega-projection@~1.4.0: d3-geo "^1.11.9" d3-geo-projection "^2.7.1" -vega-regression@~1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/vega-regression/-/vega-regression-1.0.5.tgz#dbe39dc6e3cb0c1f54f631be4edeedd3366f4b2c" - integrity sha512-HlKRQ0N5pQGqjmdy7Am+jtDCInI1IyAfHMbIVmpgF7H9odaUqtHynZijRtHRfbS6IXK+aXJ0WNsKW/oc+ox2fA== +vega-regression@1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/vega-regression/-/vega-regression-1.0.4.tgz#f29d8a8ec0e2dcc39056b71e12f80e8e488edd33" + integrity sha512-fHWJ0t1VEZOzpfBrI66Wo6RxMnqvJXYnXcIUZlOrZ9RLLbb1I6cdEASZp0cQ8M2oYAqu0YVgC0UEjnLs9mJaxQ== dependencies: d3-array "^2.4.0" vega-dataflow "^5.4.1" - vega-statistics "^1.7.3" + vega-statistics "^1.7.2" vega-util "^1.12.2" -vega-runtime@^5.0.2, vega-runtime@~5.0.2: +vega-runtime@5.0.2, vega-runtime@^5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/vega-runtime/-/vega-runtime-5.0.2.tgz#4d7f327e05b2d4addc8b7472d49eb54f1118ff6c" integrity sha512-Cuv+RY6kprH+vtNERg6xP4dgcdYGD2ZnxPxJNEtGi7dmtQQTBa1s7jQ0VDXTolsO6lKJ3B7np2GzKJYwevgj1A== @@ -16411,7 +16587,7 @@ vega-runtime@^5.0.2, vega-runtime@~5.0.2: vega-dataflow "^5.1.1" vega-util "^1.11.0" -vega-scale@^6.0.0, vega-scale@~6.0.0: +vega-scale@6.0.0, vega-scale@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/vega-scale/-/vega-scale-6.0.0.tgz#b227127b00841e9d507a3235af2f8be475f7de83" integrity sha512-uNJ5LC+s+XLxdO2iXC36/TLen3mMNv0wzhMZMNXa8h+Ih10geJ57sHbYYA8Z8403JC9AYTaWUe7m0H9CHgV9NA== @@ -16421,16 +16597,16 @@ vega-scale@^6.0.0, vega-scale@~6.0.0: d3-scale "^3.2.1" vega-util "^1.12.1" -vega-scenegraph@^4.5.0, vega-scenegraph@^4.6.0, vega-scenegraph@~4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/vega-scenegraph/-/vega-scenegraph-4.6.0.tgz#431b31c72ce528285c5808593dbb29cf8ed981e8" - integrity sha512-OwHr67kUyY5vG7VR1ovatVyynoHemIUxLgG6w5I4ckzCwCUWgvQRMhxT3bJnoIWvgE9AgLTiIL8mfoSLehK1IA== +vega-scenegraph@4.5.0, vega-scenegraph@^4.4.0, vega-scenegraph@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/vega-scenegraph/-/vega-scenegraph-4.5.0.tgz#0c3126a3210c19dbc1548b23d5e9634d58177fe8" + integrity sha512-nO1bTFwhLdkOPzJ++f8dmlMX6OLZya9c94/HZNwFRfGNfri1vXyCIudFwCJD9/h0dJ0kSWfG8ybH9wDQMcZZDw== dependencies: d3-path "^1.0.9" d3-shape "^1.3.7" vega-canvas "^1.2.1" - vega-loader "^4.2.0" - vega-util "^1.13.1" + vega-loader "^4.1.3" + vega-util "^1.12.1" vega-selections@^5.1.0: version "5.1.0" @@ -16440,14 +16616,14 @@ vega-selections@^5.1.0: vega-expression "^2.6.1" vega-util "^1.11.0" -vega-statistics@^1.7.1, vega-statistics@^1.7.3, vega-statistics@~1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/vega-statistics/-/vega-statistics-1.7.3.tgz#8ce436eccebf484f7c7aa619c884e2427a7e044b" - integrity sha512-PRhoozWmlQRYesly4greSIJ5yaKljzmuPYiXbhcvxW3dvgcnWexKjh3Kxk66eTgf9vX6OU/5QEnKQqjWKXqiQQ== +vega-statistics@1.7.2, vega-statistics@^1.7.1, vega-statistics@^1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/vega-statistics/-/vega-statistics-1.7.2.tgz#0bd01b52aee294915f2c3f82cb80a82501592ad9" + integrity sha512-G6rvZ50MqnmiN1fGqDnFoCLWFwBCYt3nCucXu3zWov7A1/lsatvbDKYeSlVlnvT9OHtv4L+3pRpepFh5IhXKFg== dependencies: d3-array "^2.4.0" -vega-time@^1.0.0, vega-time@~1.0.0: +vega-time@1.0.0, vega-time@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/vega-time/-/vega-time-1.0.0.tgz#5bc61ff311260cd212ccc8cbd73049bcd29b1440" integrity sha512-r0yOFr/VklJwD3ew1+fEcB7E0LBCLChYlwh0KoO6cTIWMdlC4KhIIUN3/FuBfUZ4qx4V/xp71xH2YYYZTH6izg== @@ -16457,64 +16633,52 @@ vega-time@^1.0.0, vega-time@~1.0.0: d3-time-format "^2.2.1" vega-util "^1.12.0" -vega-transforms@~4.7.1: - version "4.7.1" - resolved "https://registry.yarnpkg.com/vega-transforms/-/vega-transforms-4.7.1.tgz#6bde7a05d43df4aa12e9cefe8ae559812c52b21c" - integrity sha512-F8KMowHTerCl6VZonbrItqKpTTf1/2TZDCCZ+HO0Izw9RiamkXrgwu3DZQ/H/wUwDiI/WrmKNIHh6L6pYs45AQ== +vega-transforms@4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/vega-transforms/-/vega-transforms-4.6.0.tgz#38e7b80d8ea19839773cbcae414ce97723a127cc" + integrity sha512-5nsMMnyOME/Xe1xLNGCcQ+BS94cix9gSItHiXqU7wR50ukp5U9JoUxnfeYJkuv37FAbnFpkuYlPcBCWp55zXhQ== dependencies: d3-array "^2.4.0" vega-dataflow "^5.5.0" - vega-statistics "^1.7.3" + vega-statistics "^1.7.1" vega-time "^1.0.0" - vega-util "^1.13.1" - -vega-typings@~0.12.0: - version "0.12.4" - resolved "https://registry.yarnpkg.com/vega-typings/-/vega-typings-0.12.4.tgz#e3b298723db1a484aae6ca1cf760ff20fd46fae1" - integrity sha512-2tnAfFMxaGul1875q6v6vZW20s+j9hYGlt/lpp3yVYYGARG7hjgwyHpOKnHzw3C/huy4JaHaMhf3psXgG/VnHw== - dependencies: vega-util "^1.12.1" -vega-typings@~0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/vega-typings/-/vega-typings-0.15.0.tgz#def47bff152deaaa7b796aa483a7db8beb928b9c" - integrity sha512-6XreJKYQEpqfsvNCMK+ULnY/Uy6F595LdRqM7lQO8g+lZUHbYDzhMI95a9SEz4e7KyRmdETytYKhHEL0hxQp9w== +vega-typings@0.12.0, vega-typings@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/vega-typings/-/vega-typings-0.12.0.tgz#bf998252b7f72bb2f22d6d5a02813e0bd3685562" + integrity sha512-K+IoUTTtXW3E1Qhr/y+JgLRxy476viAm6DeM8IiVrA8vvuLA3FTzHaeI7TCnaWEwk9xxLJBtdVKKC5FGbp0Nyw== dependencies: - vega-util "^1.13.1" - -vega-util@^1.11.0, vega-util@^1.12.0, vega-util@^1.12.1, vega-util@^1.12.2, vega-util@^1.13.1, vega-util@^1.8.0, vega-util@~1.13.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/vega-util/-/vega-util-1.13.1.tgz#3eae51043184c6b873c17b148755c21b01274a0e" - integrity sha512-TmvZSMKqhGlS7eAXphqJUhq+NZVYbvXX2ahargTRkVckGWjEUpWhMC7T13vYihrU2Lf/OevKbrruSXKOBxke2w== + vega-util "^1.12.1" -vega-util@~1.12.2: +vega-util@1.12.2, vega-util@^1.11.0, vega-util@^1.12.0, vega-util@^1.12.1, vega-util@^1.12.2, vega-util@^1.8.0, vega-util@~1.12.2: version "1.12.2" resolved "https://registry.yarnpkg.com/vega-util/-/vega-util-1.12.2.tgz#4997a50e56fa4be05046966568aed72246a40e27" integrity sha512-p02+oQ/XU/gzY9S/CTZinym2NKWEMIneLc+FYdUeJZZnDGa3DvcNgUDlVR90JlwLcYZNs5dBdfYLfdRHsKZKiw== -vega-view-transforms@~4.5.2: - version "4.5.2" - resolved "https://registry.yarnpkg.com/vega-view-transforms/-/vega-view-transforms-4.5.2.tgz#46b488aacc28be4c2f134be2e13f80378f399844" - integrity sha512-i12eEWSkCTGRyuFCn+96k2FvftZAygEkbYJOqSyoFdyAvdN37+87GdsDhgJJzGF31hjnN8OfzuVgxfueE0uhEQ== +vega-view-transforms@4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/vega-view-transforms/-/vega-view-transforms-4.5.0.tgz#c358068902ee412469f8f6095e1e6cff5d3690a1" + integrity sha512-8n52147HxNSjQ23NeHN//AWt99zZP+Ukiy4kSbkCJGPZ3dW3NYdunEYNvZWyMmOKSrHIMtgdcHUM9FmPTQpE9w== dependencies: - vega-dataflow "^5.5.0" - vega-scenegraph "^4.6.0" - vega-util "^1.13.1" + vega-dataflow "^5.4.1" + vega-scenegraph "^4.4.0" + vega-util "^1.12.0" -vega-view@~5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/vega-view/-/vega-view-5.5.0.tgz#57901e5bce075c1389a949bb761d94b32f9118d0" - integrity sha512-hD3J00QRkh3zC1jF81UgxnXpTKY07nVKKG1ut7rlCpVdpEec8Ix6EckOHpAzMkHeY6aG5fbhSQbRYv05tzQy/A== +vega-view@5.4.0: + version "5.4.0" + resolved "https://registry.yarnpkg.com/vega-view/-/vega-view-5.4.0.tgz#5c5cb2307b1762e9c2d78901df725bdf3d9a8133" + integrity sha512-Q8nH93NceWJRB4/KTehOvsrpbCGGDnkjOCcNQpTsGgu6QRmgMTHtRQTHkE+LhLXMO/55zZrVR22thvMEH9r36w== dependencies: d3-array "^2.4.0" d3-timer "^1.0.10" vega-dataflow "^5.5.0" vega-functions "^5.5.1" vega-runtime "^5.0.2" - vega-scenegraph "^4.6.0" - vega-util "^1.13.1" + vega-scenegraph "^4.5.0" + vega-util "^1.12.1" -vega-voronoi@~4.1.1: +vega-voronoi@4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/vega-voronoi/-/vega-voronoi-4.1.1.tgz#1a09f86661cf85c75581282f19ff108603893715" integrity sha512-agLmr+UGxJs5KB9D8GeZqxgeWWGoER/eVHPcFFPgVuoNBsrqf2bdoltmIkRnpiRsQnGCibGixhFEDCc9GGNAww== @@ -16523,7 +16687,7 @@ vega-voronoi@~4.1.1: vega-dataflow "^5.1.1" vega-util "^1.11.0" -vega-wordcloud@~4.0.4: +vega-wordcloud@4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/vega-wordcloud/-/vega-wordcloud-4.0.4.tgz#9169165c652478489e43cc56e05edbe14ce3d3c3" integrity sha512-+FwgCKTj8JBMbBjNiVciLvjQnk+rC59uyecmlTsmtUGVZz5wyANooYcXt4xtiRu+G8ohdlJ6L/59+UFTaUR8og== @@ -16535,35 +16699,35 @@ vega-wordcloud@~4.0.4: vega-util "^1.12.1" vega@^5.9.1: - version "5.10.1" - resolved "https://registry.yarnpkg.com/vega/-/vega-5.10.1.tgz#4eafef108c065cefa463375350bab7db27e06836" - integrity sha512-DSY0G3NnOk425TYVxRlrzdi1xKk3b5yfqjIRRhg+oN+T55PWCBzDnUG3GdqOSJnfs6zTp6485rR4IL8qpbDizA== - dependencies: - vega-crossfilter "~4.0.1" - vega-dataflow "~5.5.0" - vega-encode "~4.5.3" - vega-event-selector "~2.0.2" - vega-expression "~2.6.3" - vega-force "~4.0.3" - vega-functions "~5.5.1" - vega-geo "~4.3.0" - vega-hierarchy "~4.0.3" - vega-loader "~4.2.1" - vega-parser "~5.13.1" - vega-projection "~1.4.0" - vega-regression "~1.0.5" - vega-runtime "~5.0.2" - vega-scale "~6.0.0" - vega-scenegraph "~4.6.0" - vega-statistics "~1.7.3" - vega-time "~1.0.0" - vega-transforms "~4.7.1" - vega-typings "~0.15.0" - vega-util "~1.13.1" - vega-view "~5.5.0" - vega-view-transforms "~4.5.2" - vega-voronoi "~4.1.1" - vega-wordcloud "~4.0.4" + version "5.9.1" + resolved "https://registry.yarnpkg.com/vega/-/vega-5.9.1.tgz#8c4cd23630ba6b4422342a4825234a7d1e0a9957" + integrity sha512-Wd5WAfaXPGuHk5cSFqiFNkkw5DXRSZcl+q4x351VUbmV5/IRipyGZx05EbBP5D9B40Xb/Tt2I+JQBBdxuYYIxQ== + dependencies: + vega-crossfilter "4.0.1" + vega-dataflow "5.5.0" + vega-encode "4.5.2" + vega-event-selector "2.0.2" + vega-expression "2.6.3" + vega-force "4.0.3" + vega-functions "5.5.1" + vega-geo "4.3.0" + vega-hierarchy "4.0.3" + vega-loader "4.1.3" + vega-parser "5.12.0" + vega-projection "1.4.0" + vega-regression "1.0.4" + vega-runtime "5.0.2" + vega-scale "6.0.0" + vega-scenegraph "4.5.0" + vega-statistics "1.7.2" + vega-time "1.0.0" + vega-transforms "4.6.0" + vega-typings "0.12.0" + vega-util "1.12.2" + vega-view "5.4.0" + vega-view-transforms "4.5.0" + vega-voronoi "4.1.1" + vega-wordcloud "4.0.4" verror@1.10.0: version "1.10.0" @@ -16618,11 +16782,11 @@ w-json@^1.3.5: integrity sha512-9hvWhnNZ5J3ypOJt2LzmAQBl1NrQBZED/E8MwkZQ+lGTq51hyR9zeH0dgaJzLfzOVoTbxe/yPqL10c5WVsHvbg== w3c-hr-time@^1.0.1: - 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== + version "1.0.1" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" + integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= dependencies: - browser-process-hrtime "^1.0.0" + browser-process-hrtime "^0.1.2" w3c-xmlserializer@^1.1.2: version "1.1.2" @@ -16640,6 +16804,13 @@ walker@^1.0.7, walker@~1.0.5: dependencies: makeerror "1.0.x" +warning@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" + integrity sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w= + dependencies: + loose-envify "^1.0.0" + warning@^4.0.2, warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" @@ -16648,11 +16819,11 @@ warning@^4.0.2, warning@^4.0.3: loose-envify "^1.0.0" watchpack@^1.6.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.1.tgz#280da0a8718592174010c078c7585a74cd8cd0e2" - integrity sha512-+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA== + version "1.6.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" + integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== dependencies: - chokidar "^2.1.8" + chokidar "^2.0.2" graceful-fs "^4.1.2" neo-async "^2.5.0" @@ -16713,14 +16884,14 @@ webpack-virtual-modules@^0.2.0: debug "^3.0.0" webpack@^4.33.0, webpack@^4.38.0: - version "4.42.1" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.42.1.tgz#ae707baf091f5ca3ef9c38b884287cfe8f1983ef" - integrity sha512-SGfYMigqEfdGchGhFFJ9KyRpQKnipvEvjc1TwrXEPCM6H5Wywu10ka8o3KGrMzSMxMQKt8aCHUFh5DaQ9UmyRg== - 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" + version "4.41.5" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.5.tgz#3210f1886bce5310e62bb97204d18c263341b77c" + integrity sha512-wp0Co4vpyumnp3KlkmpM5LWuzvZYayDwM2n17EHFr4qxBBbRokC7DJawPJC7TfSFZ9HZ6GsdH40EBj4UV0nmpw== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-module-context" "1.8.5" + "@webassemblyjs/wasm-edit" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" acorn "^6.2.1" ajv "^6.10.2" ajv-keywords "^3.4.1" @@ -16732,7 +16903,7 @@ webpack@^4.33.0, webpack@^4.38.0: loader-utils "^1.2.3" memory-fs "^0.4.1" micromatch "^3.1.10" - mkdirp "^0.5.3" + mkdirp "^0.5.1" neo-async "^2.6.1" node-libs-browser "^2.2.1" schema-utils "^1.0.0" @@ -16755,7 +16926,7 @@ websocket-extensions@>=0.1.1: resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg== -whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5: +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3, 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== @@ -16767,12 +16938,12 @@ whatwg-fetch@>=0.10.0, whatwg-fetch@^3.0.0: resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== -whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: +whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0, 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@^6.5.0: +whatwg-url@^6.4.1, whatwg-url@^6.5.0: version "6.5.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== @@ -16790,6 +16961,11 @@ whatwg-url@^7.0.0: tr46 "^1.0.1" webidl-conversions "^4.0.2" +which-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= + which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" @@ -16807,7 +16983,7 @@ which@^1.2.14, which@^1.2.9, which@^1.3.1: dependencies: isexe "^2.0.0" -which@^2.0.1, which@^2.0.2: +which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== @@ -16917,9 +17093,9 @@ write-file-atomic@^2.0.0, write-file-atomic@^2.3.0, write-file-atomic@^2.4.2: signal-exit "^3.0.2" 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== + version "3.0.1" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.1.tgz#558328352e673b5bb192cf86500d60b230667d4b" + integrity sha512-JPStrIyyVJ6oCSz/691fAjFtefZ6q+fP6tm+OS4Qw6o+TGQxNp1ziY2PgS+X/m0V8OWhZiO/m4xSj+Pr4RrZvw== dependencies: imurmurhash "^0.1.4" is-typedarray "^1.0.0" @@ -16965,10 +17141,17 @@ write@1.0.3: dependencies: mkdirp "^0.5.1" +ws@^5.2.0: + version "5.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" + integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== + dependencies: + async-limiter "~1.0.0" + ws@^7.0.0: - version "7.2.3" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.3.tgz#a5411e1fb04d5ed0efee76d26d5c46d830c39b46" - integrity sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ== + version "7.2.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.1.tgz#03ed52423cd744084b2cf42ed197c8b65a936b8e" + integrity sha512-sucePNSafamSKoOqoNfBd8V0StlkzJKL2ZAhGQinCfNQ+oacw+Pk7lcdAElecBF2VkLNZRiIb5Oi1Q5lVUVt2A== xml-name-validator@^3.0.0: version "3.0.0" @@ -16980,26 +17163,16 @@ xmlchars@^2.1.1: resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== -xregexp@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.3.0.tgz#7e92e73d9174a99a59743f67a4ce879a04b5ae50" - integrity sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g== - dependencies: - "@babel/runtime-corejs3" "^7.8.3" - -xss@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/xss/-/xss-1.0.6.tgz#eaf11e9fc476e3ae289944a1009efddd8a124b51" - integrity sha512-6Q9TPBeNyoTRxgZFk5Ggaepk/4vUOYdOsIUYvLehcsIZTFjaavbVnsuAkLA5lIFuug5hw8zxcB9tm01gsjph2A== - dependencies: - commander "^2.9.0" - cssfilter "0.0.10" - xtend@^4.0.0, 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@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= + y18n@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" @@ -17021,11 +17194,11 @@ yallist@^4.0.0: integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^1.7.2: - version "1.8.3" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.8.3.tgz#2f420fca58b68ce3a332d0ca64be1d191dd3f87a" - integrity sha512-X/v7VDnK+sxbQ2Imq4Jt2PRUsRsP7UcpSl3Llg6+NRRqWLIvxkMFYtH1FmvwNGYRKKPa+EPA4qDBlI9WVG1UKw== + version "1.7.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2" + integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw== dependencies: - "@babel/runtime" "^7.8.7" + "@babel/runtime" "^7.6.3" yargs-parser@10.x, yargs-parser@^10.0.0: version "10.1.0" @@ -17035,17 +17208,17 @@ yargs-parser@10.x, yargs-parser@^10.0.0: camelcase "^4.1.0" yargs-parser@^13.0.0: - version "13.1.2" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" - integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== + version "13.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" + integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== dependencies: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^15.0.1: - version "15.0.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3" - integrity sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw== +yargs-parser@^15.0.0: + version "15.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.0.tgz#cdd7a97490ec836195f59f3f4dbe5ea9e8f75f08" + integrity sha512-xLTUnCMc4JhxrPEPUYD5IBR1mWCK/aT6+RJ/K29JY2y1vD+FhtgKK0AXRWvI262q3QSffAQuTouFIKUuHX89wQ== dependencies: camelcase "^5.0.0" decamelize "^1.2.0" @@ -17058,49 +17231,50 @@ yargs-parser@^16.1.0: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^18.1.1: - version "18.1.2" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.2.tgz#2f482bea2136dbde0861683abea7756d30b504f1" - integrity sha512-hlIPNR3IzC1YuL1c2UwwDKpXlNFBqD1Fswwh1khz5+d8Cq/8yc/Mn0i+rQXduu8hcrFKvO7Eryk+09NecTQAAQ== +yargs-parser@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" + integrity sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw= dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" + camelcase "^3.0.0" -yargs@^14.2.2: - version "14.2.3" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414" - integrity sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg== +yargs@6.6.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" + integrity sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg= dependencies: - cliui "^5.0.0" - decamelize "^1.2.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" require-directory "^2.1.1" - require-main-filename "^2.0.0" + require-main-filename "^1.0.1" set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^15.0.1" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^4.2.0" -yargs@^15.3.1: - version "15.3.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.3.1.tgz#9505b472763963e54afe60148ad27a330818e98b" - integrity sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA== +yargs@^14.2.2: + version "14.2.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.2.tgz#2769564379009ff8597cdd38fba09da9b493c4b5" + integrity sha512-/4ld+4VV5RnrynMhPZJ/ZpOCGSCeghMykZ3BhdFBDa9Wy/RH6uEGNWDJog+aUlq+9OM1CFTgtYRW5Is1Po9NOA== dependencies: - cliui "^6.0.0" + cliui "^5.0.0" decamelize "^1.2.0" - find-up "^4.1.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 "^4.2.0" + string-width "^3.0.0" which-module "^2.0.0" y18n "^4.0.0" - yargs-parser "^18.1.1" + yargs-parser "^15.0.0" -yargs@~15.1.0: +yargs@^15.0.0, yargs@^15.0.2, yargs@~15.1.0: version "15.1.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.1.0.tgz#e111381f5830e863a89550bd4b136bb6a5f37219" integrity sha512-T39FNN1b6hCW4SOIk1XyTOWxtXdcen0t+XYrysQmChzSipvhBO8Bj0nK1ozAasdk24dNWuMZvr4k24nz+8HHLg== @@ -17122,10 +17296,10 @@ yeoman-assert@^3.1.0: resolved "https://registry.yarnpkg.com/yeoman-assert/-/yeoman-assert-3.1.1.tgz#9f6fa0ecba7dd007c40f579668cb5dda18c79343" integrity sha512-bCuLb/j/WzpvrJZCTdJJLFzm7KK8IYQJ3+dF9dYtNs2CUYyezFJDuULiZ2neM4eqjf45GN1KH/MzCTT3i90wUQ== -yeoman-environment@^2.3.4, yeoman-environment@^2.8.1: - version "2.8.1" - resolved "https://registry.yarnpkg.com/yeoman-environment/-/yeoman-environment-2.8.1.tgz#76c52fcccf26bcbd7ded35d9e22a9f3f1394d241" - integrity sha512-MV6yeJfnSsZBv/VuWvw82bN6hF6KIXRUwhEPaO+RHJAWeNCQAF+iYfBNsJOo4tx5Puch300h+DF9QZceKkbzQg== +yeoman-environment@^2.3.4, yeoman-environment@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/yeoman-environment/-/yeoman-environment-2.7.0.tgz#d1b6679de883ce14a68b869c4b19d55a0d66f477" + integrity sha512-YNzSUWgJVSgnm0qgLON4Gb2nTm+kywBiWjK4MbvosjUP2YJJ30lNhEx7ukyzKRPUlsavd5IsuALtF6QaVrq81A== dependencies: chalk "^2.4.1" cross-spawn "^6.0.5" @@ -17133,7 +17307,7 @@ yeoman-environment@^2.3.4, yeoman-environment@^2.8.1: diff "^3.5.0" escape-string-regexp "^1.0.2" globby "^8.0.1" - grouped-queue "^1.0.0" + grouped-queue "^0.3.3" inquirer "^6.0.0" is-scoped "^1.0.0" lodash "^4.17.10" @@ -17143,10 +17317,10 @@ yeoman-environment@^2.3.4, yeoman-environment@^2.8.1: text-table "^0.2.0" untildify "^3.0.3" -yeoman-generator@^4.0.0, yeoman-generator@^4.7.1: - version "4.7.2" - resolved "https://registry.yarnpkg.com/yeoman-generator/-/yeoman-generator-4.7.2.tgz#07edfc14208b1411032711ba89330915b9da345f" - integrity sha512-huqFGIDkS8tPWl9cnOsied8eYz0l4wh6O6Ce71y86Phiq9E2WCrpoqRFL4C6znkgmzTAq5QX3eh9IYeuxZMqzQ== +yeoman-generator@^4.0.0, yeoman-generator@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/yeoman-generator/-/yeoman-generator-4.4.0.tgz#182c992509d4b7512a6bbe17c0dfdf7e52953344" + integrity sha512-Z+eMdeyKuhbgnghhONh+xv+YztccJLgCQ8dOogq/9oLJAU/+D7oOdpLK/UryEoJQd5merJIDgCedVIxhtPsV2g== dependencies: async "^2.6.2" chalk "^2.4.2" @@ -17175,18 +17349,18 @@ yeoman-generator@^4.0.0, yeoman-generator@^4.7.1: yeoman-environment "^2.3.4" yeoman-test@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/yeoman-test/-/yeoman-test-2.3.0.tgz#4f37c6a15b1ccc24fc971d93933de87d331f5d16" - integrity sha512-4noKP8/rN/CwKxC4Qf6y4IfI4IJKn3dcLPPrh693TKDmh3k0P4ZqXK1OInaCFxbtIFVrTJMbmlallRr9T5322w== + version "2.1.0" + resolved "https://registry.yarnpkg.com/yeoman-test/-/yeoman-test-2.1.0.tgz#2df3f7c2c0577a26da7b380dcd35ee87f39f6c98" + integrity sha512-m7yt5z109XP+namMcqexj1FqdT7zw0VY8iW+kjO46NxxW4hMnqN77loWUoDYuzT9MXra3Q4OphZ3P6WIYFHTeg== dependencies: - inquirer "^7.1.0" + inquirer "^7.0.3" lodash "^4.17.15" mkdirp "^0.5.1" pinkie-promise "^2.0.1" rimraf "^3.0.0" sinon "^8.0.4" - yeoman-environment "^2.8.1" - yeoman-generator "^4.7.1" + yeoman-environment "^2.7.0" + yeoman-generator "^4.4.0" yosay@^2.0.2: version "2.0.2"